aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 7e9a6683ffb45ce256a3198288b09439cf9d508a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="utf-8" name="viewport"
	content="width=device-width, initial-scale=1, maximum-scale=1">
	<link rel="stylesheet" href="{{ get_url(path='style.css', cachebust=true) }}">
	<title>CHANGE ME</title>
</head>

<body>
{% include "partials/header.html" %}

<main>
   {% block content %} {% endblock content %}

   {% include "partials/footer.html" %}
</main>
</body>
</html>