Rocket/examples/templating/templates/tera/index.html.tera
Sergio Benitez 50c9e88cf9 Completely revamp, redo examples.
The new examples directory...

  * Contains a `README.md` explaining each example.
  * Consolidates examples into more complete chunks.
  * Is just better.

Resolves #1447.
2021-04-07 23:09:05 -07:00

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