aboutsummaryrefslogtreecommitdiffstats
path: root/site/layouts/indexes/post.html
blob: a60f51385e33d0b4099eeaf5ab324f3934325c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ partial "header" . }}
{{ partial "nav" . }}

{{ partial "jumbotron" (dict "imageUrl" "/img/post-index.jpg" "title" "post") }}

<div class="mw7 center">
  <ul class="flex-ns flex-wrap mhn1-ns pa3">
      {{ range .Data.Pages }}
          <div class="w-50-ns ph1-ns flex">
            {{ .Render "li"}}
          </div>
      {{ end }}
  </ul>
</div>

{{ partial "footer" . }}