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

  tab-list a[href="/{{ partial "author-user.html" . }}"] {
    display: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #014cc6;
    text-decoration-color: var(--link);
  }
</style>
{{ end }}

{{ define "middle" }}

  {{- $messages := print (lang.FormatNumberCustom 0 .Paginator.TotalNumberOfElements) " " "Messages" -}}

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

  {{ partial "profile.html" . }}

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

  {{ partial "pagination.html" . }}

{{ end }}

{{ define "right" }}
  {{ range first 1 .Paginator.Pages }}
   {{- partial "navigator-right.html" . -}}
  {{ end }}
{{ end }}