Files
docker-docs/layouts/shortcodes/include.html
David Karlsson eb8614af4d hugo: refactor include shortcode mechanics
Instead of inserting the raw file contents, use the page object.

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2024-08-16 10:30:05 +02:00

5 lines
174 B
HTML

{{ $fileToInclude := .Get 0 }}
{{ with (site.GetPage (printf "includes/%s" $fileToInclude)) }}
{{ page.RenderString (dict "display" "block") .RenderShortcodes }}
{{ end }}