basic-rocket/templates/index.html.tera

17 lines
331 B
Plaintext
Raw Normal View History

2020-11-04 01:06:24 +01:00
{% extends "base" %}
{% block content %}
2020-11-11 02:03:48 +01:00
<h1>Here is {{title}}</h1>
2020-11-10 03:41:39 +01:00
<h3>Here are the registered users :</h3>
2020-11-04 01:06:24 +01:00
<ul>
{% for s in items %}
2020-11-10 03:41:39 +01:00
<li>
<a href="/{{ s }}">
{{ s }}
</a>
</li>
2020-11-04 01:06:24 +01:00
{% endfor %}
</ul>
{% endblock content %}