porcellis.com

ref: master

layouts/list.html


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}
{{ $nums := partialCached "dispatch-numbers.html" . "dispatch-numbers" }}
<main>
  <div class="page-content">
    <header class="site-header">
      {{ partial "masthead.html" . }}
      <div class="divisor"></div>
    </header>

    <h1 class="list-title">{{ .Title }}</h1>

    <section class="dispatch-list">
      {{ range .Pages }}
      {{ partial "dispatch-entry.html" (dict "page" . "nums" $nums) }}
      {{ end }}
    </section>

    {{ partial "colophon.html" . }}
  </div>
</main>
{{ end }}