diff options
author | Alan Pearce | 2023-09-09 19:23:38 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-09 19:23:38 +0200 |
commit | c8d206442c65eaf999445db6c104ee55a07dd931 (patch) | |
tree | 753a4e6d1c69753d3bc7b396a80465950ff66ecd /themes/bear/templates/base.html | |
parent | b2c15923b33fa65bffe8a5eaef869e6b66d70078 (diff) | |
parent | a961bc284bb130e44468c07aaaa028652c151e08 (diff) | |
download | website-c8d206442c65eaf999445db6c104ee55a07dd931.tar.lz website-c8d206442c65eaf999445db6c104ee55a07dd931.tar.zst website-c8d206442c65eaf999445db6c104ee55a07dd931.zip |
Merge commit 'a961bc284bb130e44468c07aaaa028652c151e08'
Diffstat (limited to 'themes/bear/templates/base.html')
-rw-r--r-- | themes/bear/templates/base.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/themes/bear/templates/base.html b/themes/bear/templates/base.html index e3e68b4..3a2d565 100644 --- a/themes/bear/templates/base.html +++ b/themes/bear/templates/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"> <link rel="shortcut icon" href="{{ config.extra.favicon | default(value="data:,") }}"> @@ -12,7 +15,7 @@ {%- endblock -%} {%- endif %} <style> - {% include "style.html" ignore missing -%} + {%- include "style.css.html" ignore missing -%} </style> {% include "custom_head.html" ignore missing -%} </head> |