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

@@ -1,4 +1,15 @@
{{header}}
─────────────────────────────────────────────────────
 . . , . . . .. / 
 |\ | _.-+-|_ _.._ | | _ _ _||_ . .._.._ / 
 | \|(_] | [ )(_][ ) * |/\|(_)(_)(_][_)(_|[ [ )/ 
─────────────────────────────────────────────────────
Home [/]
Contact [/contact]
Projects [/projects]
Donate [/donate]
API [/api/v1/]
───────────────────────────────────────────────
 ABOUT ME 
──────────
@@ -18,7 +29,7 @@ I'm currently working on: {{ repo | safe }}
────────
- Linux servers & CLI
- DNS, DNSSEC, and Trustless SSL
- DNS & DNSSEC
- NGINX web servers
- Programming:
- Python 3
@@ -26,3 +37,7 @@ I'm currently working on: {{ repo | safe }}
- Java
- Bash
Served to: {{ ip }}
───────────────────────────────────────────────

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 %}