staxman-old/templates/home.html

16 lines
250 B
HTML
Raw Normal View History

2023-11-18 15:35:30 +00:00
{% extends "base.html" %}
2023-11-18 22:17:05 +00:00
{% block title %}Overview{% endblock %}
2023-11-18 15:35:30 +00:00
{% 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>
2023-11-18 22:17:05 +00:00
<style scoped>
</style>
2023-11-18 15:35:30 +00:00
{% endblock %}