generated from coulomb/repo-seed
30 lines
922 B
HTML
30 lines
922 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="de" x-data="{ sidebarOpen: true }">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Vergabe Teilnahme{% endblock %}</title>
|
|
<link rel="stylesheet" href="{% static 'dist/main.css' %}">
|
|
<script src="{% static 'vendor/alpinejs/alpine.min.js' %}" defer></script>
|
|
</head>
|
|
<body class="bg-slate-50 min-h-screen">
|
|
{% include "partials/topbar.html" %}
|
|
|
|
<div class="flex h-[calc(100vh-56px)]">
|
|
{% include "partials/sidebar.html" %}
|
|
|
|
<main class="flex-1 overflow-y-auto p-6">
|
|
{% include "partials/breadcrumb.html" %}
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
|
|
{% include "partials/feedback_button.html" %}
|
|
<div id="modal-container"></div>
|
|
|
|
<script src="{% static 'vendor/htmx/htmx.min.js' %}"></script>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|