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