22 lines
434 B
Twig
22 lines
434 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
{% if cookies %}
|
|
<h2>Cookies</h2>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
{% for name, value in cookies %}
|
|
<tr>
|
|
<td>{{ name }}</td>
|
|
<td>{{ value }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
|
|
<h2>Luck</h2>
|
|
<p>Your lucky number is {{ number }}.</p>
|
|
{% endblock %}
|