mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-08 10:42:37 +00:00
16 lines
295 B
Plaintext
16 lines
295 B
Plaintext
{% 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 %}
|