diff options
Diffstat (limited to 'layouts/partials/extend_head.html')
-rw-r--r-- | layouts/partials/extend_head.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layouts/partials/extend_head.html b/layouts/partials/extend_head.html new file mode 100644 index 0000000..a3af417 --- /dev/null +++ b/layouts/partials/extend_head.html @@ -0,0 +1,8 @@ +{{- /* Head custom content area start */ -}} +{{- /* Insert any custom code (web-analytics, resources, etc.) - it will appear in the <head></head> section of every page. */ -}} +{{- /* Can be overwritten by partial with the same name in the global layouts. */ -}} +{{- /* Head custom content area end */ -}} + +{{ range .Site.Params.custom_css -}} + <link rel="stylesheet" href="{{ . | absURL }}"> +{{- end }} |