diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-06 21:30:21 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-06 21:30:21 +0200 |
| commit | 426f312bfea41d06280e15614d64480710a3fdf0 (patch) | |
| tree | 1b80d1bf2534ee9a0ed59e92b1026fae0b60c938 /main/templates | |
| parent | 32021aacb4213de765130914b06c66b587170d91 (diff) | |
wallpaper on root domain
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 %} |
