Files
cursopython2023/aula207_ola_django/base/global/base.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>