aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/feeds.html
blob: 2845ea08f42b282f68c52fb2de0061720c224982 (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
{{ define "styles" }}
{{ $author :=  partial "author-user.html" . }}
<style>
  {{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}

  tab-bar a[href="{{ .Site.BaseURL }}/{{ $author }}/feeds/"] {
    color: #111;
    color: var(--foreground);
    display: inherit;
    font-weight: 700;
    text-decoration-color: #014cc6;
    text-decoration-color: var(--link);
    text-decoration: underline;
  }
</style>
{{ end }}

{{ define "middle" }}

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

  {{ partial "profile.html" . }}

  {{ range .Paginator.Pages }}
    {{ .Render "summary" }}
  {{ else }}
  <footer>
    <code>No feeds found!</code>
  </footer>
  {{ end }}

  {{ partial "pagination.html" . }}

  {{ $writeToFile := partial "function-generate-feeds" . }}

{{ end }}

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