diff options
author | ct <ct@ctqa.53hor.net> | 2025-05-18 15:32:55 -0400 |
---|---|---|
committer | ct <ct@ctqa.53hor.net> | 2025-05-18 15:32:55 -0400 |
commit | 203042b3e4e5f2a5a8b6dda0d0cfcc2cdc9876c0 (patch) | |
tree | d97b06ce495c5f7e73133711e45592cd6827550d /templates/brochure/index.html.j2 | |
parent | dc2258522780d8cdc1b2b6713711f83a94cc0f46 (diff) | |
download | carpentertutoring-203042b3e4e5f2a5a8b6dda0d0cfcc2cdc9876c0.tar.xz carpentertutoring-203042b3e4e5f2a5a8b6dda0d0cfcc2cdc9876c0.zip |
fix: brochure
Load css instead of including it.
Diffstat (limited to 'templates/brochure/index.html.j2')
-rw-r--r-- | templates/brochure/index.html.j2 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/templates/brochure/index.html.j2 b/templates/brochure/index.html.j2 index 547f9d7..a3a5b33 100644 --- a/templates/brochure/index.html.j2 +++ b/templates/brochure/index.html.j2 @@ -1,8 +1,8 @@ {% extends "base.html.j2" %} -{% block style %} -{% include "../styles.css" %} -{% include "brochure.css" %} +{% block styles %} +<link rel="stylesheet" href="/styles.css" /> +<link rel="stylesheet" href="/brochure.css" /> {% endblock %} {% block main %} @@ -25,8 +25,6 @@ </section> -<section></section> - <script> {% include "brochure.js" %} </script> |