15 lines
287 B
HTML
15 lines
287 B
HTML
{% include 'global/partials/head.html' %}
|
|
{% include 'global/partials/menu.html' %}
|
|
|
|
{% if text %}
|
|
<h1>{% block texto %}{% endblock texto %}</h1>
|
|
{% endif %}
|
|
|
|
<main class="content">
|
|
{% block posts %}{% endblock posts %}
|
|
{% block home %}{% endblock home %}
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|