1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/diario.html

16 lines
289 B
HTML
Raw Normal View History

{% 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 %}