blob: 752d091dc7898a82f2498cbe874a5b248eee446c (
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>
{% include "partials/header.html" %}
{% include "partials/nav.html" %}
<body>
<section class="section">
{% block content %} {% endblock content %}
</section>
</body>
</html>
|