all repos — homestead @ c6099d5a840000facffa0fdfc4483f6f456363ce

Code for my website

Merge commit 'e44a11ea4e05f2dc535aca8f403b45a6af7fc67e'

Alan Pearce
commit

c6099d5a840000facffa0fdfc4483f6f456363ce

parent

89ab44698968ce0bcab3e05995fce680ffb97493

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

changed files
M themes/bear/templates/base.htmlthemes/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 @@ <link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="{{ config.title }}" href="/{{ config.feed_filename }}">
{%- endblock -%} {%- endif %} <style> - {% include "style.html" ignore missing -%} + {%- include "style.css.html" ignore missing -%} </style> {% include "custom_head.html" ignore missing -%} </head>