2024-03-25 02:26:32 +00:00
|
|
|
{% extends "base.html" %} {% block title %}Micro Tuts{% endblock %} {% block
|
|
|
|
content %}
|
|
|
|
<nav>
|
|
|
|
<small>
|
2024-03-31 21:51:41 +00:00
|
|
|
<a href="/" class="text-indigo-300"><~ back</a>
|
2024-03-25 02:26:32 +00:00
|
|
|
</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-31 21:51:41 +00:00
|
|
|
<a href="tuts/{{tut.file_path}}" class="hover:no-underline" >
|
2024-03-27 06:01:15 +00:00
|
|
|
<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">
|
2024-03-31 21:51:41 +00:00
|
|
|
<div class="w-[6px] min-h-full bg-indigo-500 border rounded-xl"></div>
|
2024-03-27 06:01:15 +00:00
|
|
|
<div>
|
2024-03-31 21:51:41 +00:00
|
|
|
<h2 class="">{{tut.title}}</h3>
|
2024-03-27 06:01:15 +00:00
|
|
|
<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%}
|