aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/list.html
blob: f35f275270e954c5aa6fcf0085ff84c198ace2c2 (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
{{ define "styles" }}
<style>
  {{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
</style>
{{ end }}

{{ define "middle" }}

  {{ partial "navigator-middle.html"
    (dict
      "Title" "Home"
      "Subtitle" (partial "count-total-messages.html" .)
      "Context" .
    )
  }}

  {{ range where .Paginator.Pages ".Params.hidden" "ne" "true" }}
    {{ .Render "summary" }}
  {{ end }}

  {{ partial "pagination.html" . }}

{{ end }}

{{ define "right" }}
  {{ range first 1 (where .Site.Pages "Params.Author" .Site.Author.default.webring) }}
   {{- partial "navigator-right.html" . -}}
  {{ end }}
{{ end }}