aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html
index aba4506..752d091 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,15 +2,18 @@
<html lang="en">
<head>
- <meta charset="utf-8">
+ <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">
- <div class="container">
- {% block content %} {% endblock content %}
- </div>
+ {% block content %} {% endblock content %}
</section>
</body>