staxman-old/templates/home.html

11 lines
174 B
HTML
Raw Normal View History

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