htmx-playground/templates/tuts.html

25 lines
819 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-27 06:01:15 +00:00
<div class="list-none gap-1 flex flex-col">
2024-03-26 14:25:37 +00:00
{% for tut in tuts_list %}
2024-03-27 06:01:15 +00:00
<a href="tuts/{{tut}}" class="hover:no-underline" >
<div class="no-underline border-0 py-4 px-3 flex flex-row gap-3 border-b border-white border-dashed border-opacity-20 hover:bg-white hover:bg-opacity-10 hover:rounded-xl">
<img src="https://thispersondoesnotexist.com" width="100" height="100"/>
<div>
<h2 class="">{{tut}}</h3>
<p class="text-white text-opacity-60">Some short description of the tut</p>
</div>
</div>
</a>
2024-03-26 14:25:37 +00:00
{% endfor %}
2024-03-27 06:01:15 +00:00
</div>
2024-03-25 02:26:32 +00:00
{% endblock content%}