fix: pass context to the hook partial (#2749)

This commit fixes a bug of the context not being passed to the hook partial.
This commit is contained in:
Yury Zhauniarovich 2022-06-21 19:15:32 +03:00 committed by GitHub
commit 0d8a6eb42e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 }}