2018-07-22 17:02:42 +02:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
2018-07-22 17:15:29 +02:00
|
|
|
{% block prehead %}
|
|
|
|
<meta name="description" content="Il Diario Royal Games">
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-07-22 17:02:42 +02:00
|
|
|
{% block pagetitle %}
|
|
|
|
Diario
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>
|
2019-01-04 02:15:44 +01:00
|
|
|
Diario <a href="{{ url_for("page_wiki", key="Diario") }}" class="whatsthis">Cos'è?</a>
|
2018-07-22 17:02:42 +02:00
|
|
|
</h1>
|
2019-01-04 02:15:44 +01:00
|
|
|
<div class="omnicontainer">
|
|
|
|
<div class="diario">
|
|
|
|
{% for entry in entries %}
|
|
|
|
{% include "components/diarioentry.html" %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2018-07-22 17:02:42 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|