mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-25 07:48:54 +00:00
17 lines
602 B
HTML
17 lines
602 B
HTML
{{- /*
|
|
Render template call stack for debugging purpose.
|
|
Call the partial from any template: {{- partial "devtools/template-call-stack.html" . -}}
|
|
*/ -}}
|
|
{{- if .Site.Params.dev.debug | and hugo.IsServer -}}
|
|
{{- with templates.Current -}}
|
|
<ul class="template-call-stack">
|
|
{{- range .Ancestors -}}
|
|
<li><a href="vscode://file/{{ .Filename }}"><small>{{ .Filename }}</small></a></li>
|
|
{{- with .Base -}}
|
|
<li><a href="vscode://file/{{ .Filename }}"><small>{{ .Filename }}</small></a></li>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</ul>
|
|
{{- end -}}
|
|
{{- end -}}
|