For learning and debug purposes I use following code in each template:
{{ if .Site.Params.debug }}
{{ printf "<!-- Template: taxonomy/list.html -->" | safeHTML }}
{{ end}}
Is it possible to achieve same result by reusable code without filename hardcoding? Something like
{{ if .Site.Params.debug }}
{{ printf "<!-- Template: %s -->" .TemplateRelPermalink | safeHTML }}
{{ end}}