aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/home.history.html
blob: c901d339df913a6431bd21c9523a4ec892960f8b (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
{{ 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"    .
    )
  }}

  <history-archive>
    <item-list>
    {{ range (.Paginator.Pages.GroupByDate "2006") }}
      {{ range (first 1 .Pages) }}
        <h1>{{ .Date.Format "2006" }}</h1>
      {{ end }}
      <ul>
        {{ range .Pages }}
          <li>
            <a
              title="{{ partial "meta-title.html" . }}"
              href="{{ .RelPermalink }}#{{ 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>@{{ partial "author-user.html" . }}</span>
            </a>
          </li>
        {{ end }}
      </ul>
    {{ end }}
    </item-list>
  </history-archive>

  {{ partial "pagination.html" . }}

{{ end }}

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