htmx-playground/templates/tuts.html

17 lines
338 B
HTML

{% extends "base.html" %} {% block title %}Micro Tuts{% endblock %} {% block
content %}
<nav>
<small>
<a href="/"><~ back</a>
</small>
</nav>
<h1>Micro Tuts</h1>
<p>Here all my Micro Tuts</p>
<ul>
{% for tut in tuts_list %}
<li><a href="tuts/{{tut}}">{{tut}}</a></li>
{% endfor %}
</ul>
{% endblock content%}