mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-10 19:49:06 +00:00
50c9e88cf9
The new examples directory... * Contains a `README.md` explaining each example. * Consolidates examples into more complete chunks. * Is just better. Resolves #1447.
14 lines
315 B
Plaintext
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 %}
|