I have front matter content in content/english/sections/foo.md
.
Footer lives in layouts/partials/essentials/footer.html
.
What is the best way to access that front matter from footer.hrml
?
I have front matter content in content/english/sections/foo.md
.
Footer lives in layouts/partials/essentials/footer.html
.
What is the best way to access that front matter from footer.hrml
?
All good, solved with:
{{ with .GetPage "sections/foo" }}
{{ .Params.value }}
{{ end }}
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.