summaryrefslogtreecommitdiff
path: root/main/templates/main_base.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'main/templates/main_base.html.j2')
-rw-r--r--main/templates/main_base.html.j29
1 files changed, 7 insertions, 2 deletions
diff --git a/main/templates/main_base.html.j2 b/main/templates/main_base.html.j2
index 6eb6f91..6bac9c3 100644
--- a/main/templates/main_base.html.j2
+++ b/main/templates/main_base.html.j2
@@ -1,5 +1,10 @@
{% extends "base.html.j2" %}
{% block page_title %}{{ main.main_name }}{% endblock %}
{% block og_page_title %}{{ main.main_name }}{% endblock %}
-{% block body %}{{ super() }}
-<p>Hello world.</p>{% endblock %}
+{% block head_extra %}{{ super() }}
+ <link rel="stylesheet" href="{{ site.assets_path }}/css/main.css" />{% endblock %}
+{% block body %}<canvas id="canvas_bg" class="canvas_bg"></canvas>
+{{ super() }}
+<footer>
+ <script src="/assets/js/main.js"></script>
+</footer>{% endblock %}