vanilla-hugo/layouts/shortcodes/codeblock.html
Danila Fedorin ec7b58c8ec Avoid passing in .Site-variables to geturl.html
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
2024-06-09 18:14:53 -07:00

12 lines
396 B
HTML

{{ partial "geturl.html" (dict "scratch" .Scratch "path" (.Get 1)) }}
{{- $groupconfig := dict
"url" (.Scratch.Get "bestUrl")
"basePath" (.Scratch.Get "bestPath")
"path" (.Get 1)
"comment" ", entire file"
"code" (readFile (printf "code/%s" (.Get 1)))
"language" (.Get 0)
"opts" "linenos=table"
-}}
{{ partial "highlightgroup.html" $groupconfig }}