Files
Nathanwoodburn.github.io/templates/tools.ascii
Nathan Woodburn 724e800201
All checks were successful
Build Docker / BuildImage (push) Successful in 53s
feat: Update curl template for index
2025-10-26 18:43:25 +11:00

738 B

{{header}}
───────────────────────────────────────────────
Tools
────────────
 
Here are some of the tools I use regularly — most of them are open source! 🛠️
 
{% for type, tools_in_type in tools | groupby('type') %}
{{type}}
{% for tool in tools_in_type %}
{{tool.name}}
{{tool.description}}
Website: {{tool.url}}
{% if tool.demo_url %}Demo: {{tool.demo_url}}{% endif %}
{% endfor %}
 
───────────────────────────────────────────────
{% endfor %}