Files
bugsink/theme/templates/barest_base.html
Klaas van Schelven 9b6409f0cd Non-ugly login page
2024-05-27 15:10:01 +02:00

21 lines
556 B
HTML

{% load static tailwind_tags %}<!DOCTYPE html>{# copy of bare_base.html, but without even a menu bar #}
<html lang="en">
<head>
<title>{% block title %}Bugsink{% endblock %}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% tailwind_preload_css %}
{% tailwind_css %}
</head>
<body>
<div id="content">
<div>
{% block content %}{% endblock %}
</div>
</div>
{% block extra_js %}{% endblock %}
</body>
</html>