Files
Nathanwoodburn.github.io/templates/tools.ascii
Nathan Woodburn 72b8dae35e
All checks were successful
Build Docker / BuildImage (push) Successful in 1m0s
Check Code Quality / RuffCheck (push) Successful in 1m11s
fix: Update curl tools page to use new demo data
2025-10-30 21:35:48 +11:00

21 lines
730 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{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 %}Demo: {{tool.demo}}{% endif %}
{% endfor %}
───────────────────────────────────────────────
{% endfor %}