mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-31 23:02:37 +00:00
14 lines
293 B
Plaintext
14 lines
293 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 %}
|