aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html
blob: 7863d64ca2fd6985c8d74c81bd90337602a09e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ partial "head" . }}
<main>

      {{ .Content }}
          <ul class="contents">
          {{ range where .Paginator.Pages "Params.hidden" "ne" "true" }}
              <li>{{.Title}}
                  <div>
                    {{ .Summary }} 
                  </div>
              </li>
          {{ end }}
          </ul>

</main>
{{ partial "footer" . }}