aboutsummaryrefslogtreecommitdiff
path: root/layouts/blog/list.html
blob: 60d7a2f28069a9d08befec48579447dee7ae5c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
  <div class="list">
    <h1>{{ if .Params.heading }}{{ .Params.heading }}{{ else }}{{ .Title }}{{ end }}</h1>
      {{ range .Sections.ByDate.Reverse }}
        <h2 class="section" id="{{ .Title }}">{{ .Title }}:</h2>
        <ul>
          {{ range (union .Sections .Pages).ByDate.Reverse }}
            <li>
              <p>
                <a href="{{ .RelPermalink }}">{{ .Title }}</a>
                <sup>{{ .Date.Format "2" }}{{ if in (slice 1 21 31) .Date.Day}}st{{ else if in (slice 2 22) .Date.Day}}nd{{ else if in (slice 3 23) .Date.Day}}rd{{ else }}th{{ end }} {{ .Date.Format "January" }}</sup>
              </p>
            </li>
          {{ end }}
        </ul>
      {{ end }}
  </div>
{{ end }}