staxman-old/templates/home.html

13 lines
221 B
HTML
Raw Normal View History

2023-11-18 15:35:30 +00:00
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
<main>
2023-11-18 19:51:10 +00:00
<ul>
{% for stack in stacks %}
<li><a href="/stack/{{stack}}">{{stack}}</a></li>
{% endfor %}
</ul>
2023-11-18 15:35:30 +00:00
</main>
{% endblock %}