basic-rocket/templates/index.html.tera

13 lines
228 B
Plaintext

{% 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 %}