diff options
author | Alan Pearce | 2023-06-23 09:05:57 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-23 14:04:53 +0200 |
commit | 181ab0399d23a8edb732610d8e545ed227136908 (patch) | |
tree | 96d6fb74d9596e54eaf483c67faa51e7a9502354 /themes/bear/templates/base.html | |
parent | 6be02cea11848175ead843d2ecad78dd0548a8a4 (diff) | |
download | website-181ab0399d23a8edb732610d8e545ed227136908.tar.lz website-181ab0399d23a8edb732610d8e545ed227136908.tar.zst website-181ab0399d23a8edb732610d8e545ed227136908.zip |
Make style a css file (although zola requires .html extension)
Diffstat (limited to 'themes/bear/templates/base.html')
-rw-r--r-- | themes/bear/templates/base.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/bear/templates/base.html b/themes/bear/templates/base.html index 4ba8442..3b5340e 100644 --- a/themes/bear/templates/base.html +++ b/themes/bear/templates/base.html @@ -12,7 +12,9 @@ <link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="{{ config.title }}" href="{{ get_url(path=config.feed_filename) | safe }}"> {%- endblock -%} {%- endif %} + <style> {% include "style.html" ignore missing -%} + </style> {% include "custom_head.html" ignore missing -%} </head> <body> |