diff --git a/wowchemy/layouts/partials/functions/get_hook.html b/wowchemy/layouts/partials/functions/get_hook.html index c1a0a0e41..5791dfb81 100644 --- a/wowchemy/layouts/partials/functions/get_hook.html +++ b/wowchemy/layouts/partials/functions/get_hook.html @@ -4,12 +4,13 @@ {{ $loaded := false }} {{ $partial_dir := printf "hooks/%s/" .hook }} +{{ $context := .context }} {{ $hook_dir_path := path.Join "layouts/partials" $partial_dir }} {{ if fileExists $hook_dir_path }} {{ range os.ReadDir $hook_dir_path }} {{ if not .IsDir }} {{ $partial_path := path.Join $partial_dir .Name }} - {{ partial $partial_path . }} + {{ partial $partial_path $context }} {{ $loaded = true }} {{ end }} {{ end }}