aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 51f662586c1fb1626db8c72f42b52195dd724b9a (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
<div>
  {{ with .Site.GetPage "post" }}
    {{ range .Pages }}
        <h1>{{ .Title }}</h1>
    {{ end }}
  {{ end }}
</div>
{{ end }}