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>
|
2025-07-16 20:12:17 +02:00
|
|
|
<link rel="icon" type="image/png" href="{% static 'img/risklet-icon.png' %}">
|
2025-02-11 14:20:57 +01:00
|
|
|
<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" %}
|
2025-02-11 14:20:57 +01:00
|
|
|
<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>
|