mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
20 lines
No EOL
468 B
HTML
20 lines
No EOL
468 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block prehead %}
|
|
<meta name="description" content="Il Diario Royal Games">
|
|
{% endblock %}
|
|
|
|
{% block pagetitle %}
|
|
Diario
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>
|
|
Diario <a href="{{ url_for("page_wiki", key="Diario") }}" class="whatsthis">Cos'è?</a>
|
|
</h1>
|
|
<div class="diario">
|
|
{% for entry in entries %}
|
|
{% include "components/diarioentry.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |