10 lines
193 B
HTML
10 lines
193 B
HTML
{{ define "main" }}
|
|
{{ if eq .Type "post" }}
|
|
{{- partial "post.html" . -}}
|
|
{{ end }}
|
|
|
|
{{ if eq .Type "page" }}
|
|
{{- partial "page.html" . -}}
|
|
{{ end }}
|
|
{{ end }}
|