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
No EOL
250 B
HTML

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