apotheke/layouts/_default/single.html
2024-06-16 02:32:56 +02:00

11 lines
267 B
HTML
Executable file

{{ define "main" }}
{{ if eq .Type "post" }}
{{- partial "post.html" . -}}
{{- partial "toc.html" . -}}
{{ end }}
{{ if eq .Type "page" }}
{{- partial "page.html" . -}}
{{- partial "toc.html" . -}}
{{ end }}
{{ end }}