Files
cursopython2023/aula207_ola_django/base/global/base.html
2023-04-25 08:10:22 -03:00

12 lines
228 B
HTML

{% include 'global/partials/head.html' %}
{% include 'global/partials/menu.html' %}
<h1>{% block texto %}{% endblock texto %}</h1>
<main class="posts">
{% include 'global/partials/postblock.html' %}
</main>
</body>
</html>