21 lines
730 B
Plaintext
21 lines
730 B
Plaintext
{{header}}
|
|
[1;36m───────────────────────────────────────────────[0m
|
|
[1;36m Tools [0m
|
|
[1;36m────────────[0m
|
|
|
|
Here are some of the tools I use regularly — most of them are open source! 🛠️
|
|
|
|
{% for type, tools_in_type in tools | groupby('type') %}
|
|
[4m[1;33m{{type}}[0m
|
|
{% for tool in tools_in_type %}
|
|
[1;33m{{tool.name}}[0m
|
|
{{tool.description}}
|
|
Website: {{tool.url}}
|
|
{% if tool.demo %}Demo: {{tool.demo}}{% endif %}
|
|
{% endfor %}
|
|
|
|
[1;36m───────────────────────────────────────────────[0m
|
|
{% endfor %}
|
|
|
|
|