summaryrefslogtreecommitdiffstats
path: root/layouts/page.html
blob: 44073b206eb0b2ac431e917735fac8bcb6f0994d (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
  {{ if eq .Params.type "photo" }}
    {{ partial "photo-article.html" . }}
  {{ else if eq .Section "is" }}
    {{ partial "static-page.html" . }}
  {{ else }}
    {{ partial "article-single.html" . }}
  {{ end }}
{{ end }}