diff options
author | Francesco Tomaselli <tomaselli.fr@gmail.com> | 2025-04-02 12:19:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-02 12:19:08 +0200 |
commit | b8f85832c51ba1ab21700e7b7a674f563b7a2657 (patch) | |
tree | 5321c0152756c3a13213b03a28cb08427455992c /layouts/partials/head.html | |
parent | 9794243a3ff85aae024d6a8f7439702cc66f3f73 (diff) | |
parent | c9e49557f43a31b6072035e25f0bbfcd408a1a87 (diff) |
Merge pull request #112 from crnh/crnh/feature/hooks
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 5eea693..f62f983 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,9 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> +{{/* Head start hook */}} +{{ partial "functions/get_hook.html" (dict "hook" "head_start" "context" .) }} + {{ $faviconPath := (.Site.Params.faviconPath | default "" | absURL) }} <link rel="icon" type="image/ico" href="{{ $faviconPath }}/favicon.ico"> @@ -46,3 +49,5 @@ {{ end }} {{ end }} +{{/* Head end hook */}} +{{ partial "functions/get_hook.html" (dict "hook" "head_end" "context" .) }} |