htmx-playground/templates/tuts.html

17 lines
338 B
HTML
Raw Normal View History

2024-03-25 02:26:32 +00:00
{% extends "base.html" %} {% block title %}Micro Tuts{% endblock %} {% block
content %}
<nav>
<small>
<a href="/"><~ back</a>
</small>
</nav>
2024-03-26 14:33:47 +00:00
<h1>Micro Tuts</h1>
2024-03-26 04:30:17 +00:00
<p>Here all my Micro Tuts</p>
2024-03-26 14:25:37 +00:00
<ul>
{% for tut in tuts_list %}
<li><a href="tuts/{{tut}}">{{tut}}</a></li>
{% endfor %}
</ul>
2024-03-25 02:26:32 +00:00
{% endblock content%}