all repos — zola-bearblog @ a70fb3f413a205390b45943007400d5d9a06a72b

Port of bear blog theme to zola

Merge branch 'main' into microformats2

Alan Pearce
commit

a70fb3f413a205390b45943007400d5d9a06a72b

parent

fe37fcf3daa0eaafc1236050ac95b5d4ba21bcd2

1 file changed, 6 insertions(+), 1 deletion(-)

changed files
M templates/base.htmltemplates/base.html
@@ -1,6 +1,9 @@
<!DOCTYPE html> <html lang="{{ lang | default(value="en-US" ) }}"> <head> + {%- if config.webserver_sends_csp_headers %} + {%- include "security_tags.html" ignore missing %} + {%- endif %} <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> {% include "favicon.html" ignore missing -%}
@@ -12,7 +15,9 @@ {% block rss -%}
<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 %} - {% include "style.html" ignore missing -%} + <style> + {%- include "style.css.html" ignore missing -%} + </style> {% include "custom_head.html" ignore missing -%} </head> <body>