Rocket/examples/templating/templates/tera/index.html.tera

14 lines
315 B
Plaintext

{% extends "tera/base" %}
{% block content %}
<h1>Hi {{ name }}!</h1>
<h3>Here are your items:</h3>
<ul>
{% for s in items %}
<li>{{ s }}</li>
{% endfor %}
</ul>
<p>Try going to <a href="/tera/hello/Your%20Name">/tera/hello/Your Name</a></p>
{% endblock content %}