aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/list.html
blob: 8f3c5f523f3382fa6a4765d6210a79fb92ef783c (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
{{ 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 .Paginator.Pages }}
    {{ .Render "summary" }}
  {{ end }}

  {{ partial "pagination.html" . }}

{{ end }}

{{ define "right" }}
  {{- partial "author-list.html" . -}}

  {{ range first 1 (where .Site.Pages "Params.Author" .Site.Author.default.picturegallery) }}
    {{- partial "gallery-images.html" . -}}
  {{ end }}

  {{ range first 1 (where .Site.Pages "Params.Author" .Site.Author.default.webring) }}
    {{- partial "following-list.html" . -}}
    {{- partial "web-ring.html"       . -}}
  {{ end }}

{{ end }}