diff options
Diffstat (limited to 'main/templates')
| -rw-r--r-- | main/templates/main_base.html.j2 | 9 |
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 %} |
