27 lines
940 B
HTML
27 lines
940 B
HTML
<!-- 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">
|
|
<title>Risklet</title>
|
|
<link rel="icon" type="image/png" href="{% static 'img/risklet-icon.png' %}">
|
|
<link href="https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{% static 'css/base.css' %}">
|
|
{% block css %}{% endblock css %}
|
|
</head>
|
|
<body>
|
|
{% include "components/navigation.html" %}
|
|
<article>
|
|
{% block content %}{% endblock content %}
|
|
<!-- Bootstrap JS and dependencies -->
|
|
</article>
|
|
{% 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 %}
|
|
</body>
|
|
</html>
|