Files
old-riskletpy/backend/core/templates/base.html

26 lines
858 B
HTML
Raw Normal View History

2024-12-29 03:44:52 +01:00
<!-- base.html -->
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-04-19 21:57:57 +02:00
<title>Risklet</title>
<link href="https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap" rel="stylesheet">
2025-06-17 10:37:46 +02:00
<link rel="stylesheet" href="{% static 'css/base.css' %}">
2024-12-29 03:44:52 +01:00
{% block css %}{% endblock css %}
</head>
<body>
2025-06-17 10:37:46 +02:00
{% include "components/navigation.html" %}
<article>
2024-12-29 03:44:52 +01:00
{% block content %}{% endblock content %}
<!-- Bootstrap JS and dependencies -->
</article>
2025-06-17 10:37:46 +02:00
{% include "components/footer.html" %}
<script src={% static 'js/bootstrap.js' %}></script>
<script src="https://cdn.tailwindcss.com"></script>
<script src={% static 'js/app.js' %}></script>
{% block bottom %}{% endblock bottom %}
2024-12-29 03:44:52 +01:00
</body>
</html>