aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/home.archives.html
blob: a49b96dc05f992efbf97cb960e109f2195e71a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{{- define "title" -}}Archives — {{ end -}}
{{- define "description" -}}An archive of all items — {{ end -}}
{{- define "styles" -}}
<style>
  {{ partial "navigator.css.html" (dict "Link" "/archives/messages/") | safeCSS }}
</style>
{{- end -}}

{{- define "header" -}}
  {{- partial "navigator-middle.html"
    (dict
      "Context"    .
      "IconLabel"  "Back"
      "Id"         "back"
      "Title"      "Archives"
      "Icon"       "arrow-left"
      "Subtitle"   (print (partial "count.html" .) " " "Total")
      "Href"       (or (and (gt .Paginator.PageNumber 1) (.Paginator.Prev.URL | absURL)) "/")
    )
  -}}
{{- end -}}

{{- define "middle" -}}
  <archive-list>
    <item-list>
    {{ range (.Paginator.Pages.GroupByDate "2006") }}
      {{ range (first 1 .Pages) }}
        <h1>{{ .Date.Format "2006" }}</h1>
      {{ end }}
      <ul>
        {{ range .Pages }}
          {{- $author := partial "function-authors-data.html" . -}}
          <li>
            <a
              title="{{ partial "meta-title.html" . }}"
              href="{{ .Permalink }}#{{ partial "card-id.html" . }}"
            >
              <span>
                <code title="{{ .Date | time.Format "Posted: Monday, January 2, 2006 at 15:04:05 MST" }}">{{ .Date.Format "02 Jan" }}</code>
              </span>
              <span>{{ partial "meta-title.html" . }}</span>
              <span>@{{ $author.user }}</span>
            </a>
          </li>
        {{ end }}
      </ul>
    {{ end }}
    </item-list>
  </archive-list>
{{- end -}}

{{- define "footer" -}}
  {{- partial "pagination.html" . -}}
  {{- partial "base-footer.html" . -}}
{{- end -}}

{{- define "right" -}}
  {{- partial "navigator-right.html" . -}}
{{- end -}}