Add extra partial for <head>.

This commit is contained in:
tastytea 2019-11-20 23:21:42 +01:00
parent 89a7409671
commit 9a8e9f17cb
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
{{- $favtype := cond (eq (path.Ext $favicon) ".png") "image/png" "image/x-icon" }}
<link rel="shortcut icon" href="{{ .Site.BaseURL }}{{ $favicon }}" type="{{ $favtype }}" />
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/style.css" />
{{ partial "extra_head.html" . }}
</head>
<body>

View File

@ -0,0 +1 @@
<!-- You can overwrite this partial to put extra stuff at the end of <head>. -->