feat(templates/base.html): add additional blocks

This commit is contained in:
2026-03-10 14:49:54 +01:00
parent f43cc9491a
commit 98aa668557

View File

@@ -30,17 +30,25 @@
{% block extra_css %}
{# Override this in templates to add extra stylesheets #}
{% endblock %}
{% block extra_head %}
{% endblock extra_head %}
</head>
<body class="{% block body_class %}{% endblock %}">
<body class="flex grow flex-col h-screen {% block body_class %}{% endblock %}">
{% include "header.html" %}
{% wagtailuserbar %}
{% block content %}{% endblock %}
{% block body %}
{% block content %}
{% endblock content %}
{% endblock body %}
{# Global javascript #}
<script type="text/javascript" src="{% static 'js/kursy.js' %}"></script>
{% block extra_body %}
{% endblock extra_body %}
{% block extra_js %}
{# Override this in templates to add extra javascript #}
{% endblock %}