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