aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/section.media.html
blob: 475fc81ca5c7c44302d2f7dcbe6d605f92050487 (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
56
57
58
59
60
61
62
63
{{- define "styles" -}}
{{- $author := partial "function-authors-data.html" . -}}
{{- $author = $author.user -}}
<style>
  {{ partial "navigator.css.html" (dict "Link" "/") | safeCSS }}

  tab-bar a[href="{{ .Site.BaseURL }}/{{ $author }}/media/"] {
    color: #111;
    color: var(--foreground);
    font-weight: 700;
    text-decoration-color: #014cc6;
    text-decoration-color: var(--link);
    text-decoration: underline;
    border-bottom: 2px solid var(--background);
  }
</style>
{{- end -}}

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

  {{- partial "profile.html" . -}}

  {{- $author := partial "function-authors-data.html" . -}}
  {{- $notFeeds := where .Site.RegularPages "Params.feed" "eq" nil -}}
  {{- $authors := where .Site.RegularPages "Section" $author.user -}}
  {{- $filteredPages := $authors | intersect $notFeeds -}}
  {{- $count := 0 -}}

  {{- range first 100 $filteredPages -}}
    {{- if eq $count 10 -}}
      {{- break -}}
    {{- end -}}
    {{- if or
      (in .Content "<figure>")
      (in .Content "<youtube-video>")
      (in .Content "<video-container>")
    -}}
      {{- partial "render-embed.html" . -}}
      {{- $count = add $count 1 -}}
    {{- end -}}
  {{- end -}}

  {{- if not $count -}}
  <footer>
    <code>No media found!</code>
  </footer>
  {{- end -}}
{{- end -}}

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