This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
staxman-old/templates/home.html

16 lines
250 B
HTML
Raw Normal View History

2023-11-18 16:35:30 +01:00
{% extends "base.html" %}
2023-11-18 23:17:05 +01:00
{% block title %}Overview{% endblock %}
2023-11-18 16:35:30 +01:00
{% block content %}
<main>
2023-11-18 20:51:10 +01:00
<ul>
{% for stack in stacks %}
<li><a href="/stack/{{stack}}">{{stack}}</a></li>
{% endfor %}
</ul>
2023-11-18 16:35:30 +01:00
</main>
2023-11-18 23:17:05 +01:00
<style scoped>
</style>
2023-11-18 16:35:30 +01:00
{% endblock %}