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

14 lines
293 B
Plaintext
Raw Normal View History

2017-05-16 22:14:46 +00:00
{% extends "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="/hello/YourName">/hello/YourName</a></p>
{% endblock content %}