basic-rocket/templates/index.html.tera

13 lines
228 B
Plaintext
Raw Normal View History

2020-11-04 01:06:24 +01:00
{% extends "base" %}
{% block content %}
<h1>Here is {{name}}</h1>
<h3>Here are your items:</h3>
<ul>
{% for s in items %}
<li>{{ s }}</li>
{% endfor %}
</ul>
{% endblock content %}