11 lines
267 B
HTML
Executable file
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 }}
|