feat: Update curl template for index
All checks were successful
Build Docker / BuildImage (push) Successful in 53s

This commit is contained in:
2025-10-26 18:40:22 +11:00
parent abcaa9283d
commit 724e800201
5 changed files with 39 additions and 14 deletions

View File

@@ -5,9 +5,16 @@
Here are some of the tools I use regularly — most of them are open source! 🛠️
{% for tool in tools %}
{% 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 %}