10 lines
198 B
HTML
10 lines
198 B
HTML
{{ define "main" }}
|
|
{{ if eq .Type "post" }}
|
|
{{- partial "post.html" . -}}
|
|
{{ end }}
|
|
|
|
{{ if eq .Type "singles" }}
|
|
{{- partial "single.html" . -}}
|
|
{{ end }}
|
|
{{ end }}
|