mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
16 lines
289 B
HTML
16 lines
289 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block pagetitle %}
|
||
|
Diario
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>
|
||
|
Diario
|
||
|
</h1>
|
||
|
<div class="diario">
|
||
|
{% for entry in entries %}
|
||
|
{% include "components/diarioentry.html" %}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endblock %}
|