Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b293c6313e0b296a59b1b7a25528fffdbb98405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}

{{ if isset $.Site.Params "site_layout" }}
  {{ if eq $.Site.Params.site_layout "grid" }}
    {{- partial "grid.html" . }}
  {{ else }}
    {{- partial "row.html" . }}
  {{ end }}
{{ else }}
  {{- partial "row.html" . }}
{{ end }}
{{ end }}