chore: remove unneeded templates

This commit is contained in:
2026-03-11 11:14:38 +01:00
parent 9efe6b0295
commit 3a01af5934
30 changed files with 21 additions and 393 deletions

View File

@@ -1,7 +1,7 @@
{% load static i18n wagtailcore_tags wagtailuserbar tailwind_tags %}
{% load static i18n wagtailcore_tags wagtailuserbar tailwind_tags allauth_ui %}
<!DOCTYPE html>
<html lang="en">
<html lang="en" data-theme="{% allauth_ui_theme %}">
<head>
<meta charset="utf-8" />
<title>
@@ -16,7 +16,8 @@
{% if page.search_description %}
<meta name="description" content="{{ page.search_description }}" />
{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{# Force all links in the live preview panel to be opened in a new tab #}
{% if request.in_preview_panel %}
@@ -25,6 +26,7 @@
{# Global stylesheets #}
<link rel="stylesheet" type="text/css" href="{% static 'css/kursy.css' %}">
<link rel="stylesheet" href="{% static 'allauth_ui/output.css' %}">
{% tailwind_css %}
{% block extra_css %}
@@ -35,9 +37,8 @@
{% endblock extra_head %}
</head>
<body class="flex grow flex-col h-screen {% block body_class %}{% endblock %}">
<body class="flex grow flex-col min-h-screen {% block body_class %}{% endblock %}">
{% include "header.html" %}
{% wagtailuserbar %}
{% block body %}
{% block content %}
@@ -52,5 +53,6 @@
{% block extra_js %}
{# Override this in templates to add extra javascript #}
{% endblock %}
{% wagtailuserbar %}
</body>
</html>