staxman-old/templates/home.html
2023-11-18 20:51:10 +01:00

13 lines
221 B
HTML

{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<main>
<ul>
{% for stack in stacks %}
<li><a href="/stack/{{stack}}">{{stack}}</a></li>
{% endfor %}
</ul>
</main>
{% endblock %}