blob: 2369e2187038aa878852f466e8d98d83d0714ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{ Title }}</title>
<link rel="stylesheet" href="/static/css/main.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{% block head %}
{% endblock %}
</head>
<body>
{% block body %}
<main class="content">
{% block content %}
{% endblock %}
</main>
{% endblock %} {% include 'partials/footer.django' %}
</body>
{% block scripts %}
{% endblock %}
</html>
|