2020-10-16 22:12:09 +02:00
|
|
|
<script type="text/tikz">
|
2024-07-20 17:20:33 +02:00
|
|
|
{{ with .Get "file" }}
|
|
|
|
{{ if eq (. | printf "%.1s") "/" }}
|
|
|
|
{{/* Absolute path are from root of site. */}}
|
|
|
|
{{ $.Scratch.Set "filepath" . }}
|
|
|
|
{{ else }}
|
|
|
|
{{/* Relative paths are from page directory. */}}
|
|
|
|
{{ $.Scratch.Set "filepath" $.Page.File.Dir }}
|
|
|
|
{{ $.Scratch.Add "filepath" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ $.Scratch.Get "filepath" | readFile }}
|
|
|
|
{{ else }}
|
|
|
|
{{.Inner}}
|
|
|
|
{{ end }}
|
2020-10-16 22:12:09 +02:00
|
|
|
</script>
|