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
2023-11-18 16:35:30 +01:00

11 lines
No EOL
174 B
HTML

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