24 lines
716 B
HTML
Raw Normal View History

2025-01-26 00:53:17 +01:00
{% load static %}
2025-01-25 00:47:31 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2025-01-26 00:53:17 +01:00
<title>{% block title %}Title{% endblock %}</title>
<link rel="stylesheet" href="{% static "base.css" %}">
<script src="{% static "base.js" %}"></script>
{% block head %}{% endblock %}
2025-01-25 00:47:31 +01:00
</head>
<body>
2025-01-26 00:53:17 +01:00
<header>
<nav>
{% for nav_link in nav_links %}
<a href="{% url nav_link.view %}" {% if request.resolver_match.view_name == nav_link.view %}class="active"{% endif %}>{{ nav_link.label }}</a>
{% endfor %}
</nav>
</header>
<main>
{% block main %}{% endblock %}
</main>
<footer>{% block footer %}{% endblock %}</footer>
2025-01-25 00:47:31 +01:00
</body>
</html>