aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/home.archive-messages.html
blob: d97694f854001cfb87e0d13203c8ffcd782c8ed7 (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
{{ define "title" }}Message History — {{ end }}
{{ define "description" }}This page contains an archive of all messages — {{ end }}
{{ define "styles" }}
<style>
  {{ partial "styles-navigator.html" (dict "Link" "/archives/messages/") | safeCSS }}
</style>
{{ end }}

{{ define "middle" }}

{{ partial "navigator-middle.html"
  (dict
    "Title"      "History"
    "Subtitle"   (partial "count-total-messages.html" .)
    "Icon"       "arrow-left"
    "IconLabel"  "Back"
    "Href"       "/"
    "Id"         "back"
    "Context"    .
  )
}}

<message-archive>
  <item-list>
  {{ $type := (partial "author-user.html" .) }}
  {{ range (.Site.RegularPages.GroupByDate "2006") }}
    {{ range (first 1 .Pages) }}
    <h1>{{ .Date.Format "2006" }}</h1>
    {{ end }}
    <ul>
      {{ range .Pages }}
        <li>
          <a title="{{ partial "title.html" . }}" href="{{ .RelPermalink }}#{{ partial "card-id.html" . }}">
            <span><code>{{ .Date.Format "02 Jan" }}</code></span>
            <span>{{ partial "title.html" . }}</span>
            <span>@{{ partial "author-user.html" . }}</span>
          </a>
        </li>
      {{ end }}
    </ul>
  {{ end }}
  </item-list>
</message-archive>
{{ end }}

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