blob: 172ff065b34b433b6c1bd408232dea7eaed9964b (
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
|
{{- define "styles" -}}
<style>
{{ partial "navigator.css.html" (dict "Link" "/") | safeCSS }}
{{ partial "tabbar.css.html" (dict "Context" . "Hash" "#feeds") | safeCSS }}
</style>
{{- end -}}
{{- define "header" -}}
{{- partial "navigator-middle.html"
(dict
"Context" .
"IconLabel" "Back"
"Id" "back"
"Title" "Feeds"
"Icon" "arrow-left"
"Subtitle" (print (partial "count-feeds.html" .) " " "Total")
"Href" (or (and (gt .Paginator.PageNumber 1) (.Paginator.Prev.URL | relURL)) ("" | relURL))
)
-}}
{{- partial "profile.html" . -}}
{{- end -}}
{{- define "middle" -}}
{{- range .Paginator.Pages -}}
{{- partial "render-embed.html" . -}}
{{- else -}}
<footer>
<code>No items found!</code>
</footer>
{{- end -}}
{{- $writeToFile := partial "function-generate-feeds" . -}}
{{- end -}}
{{- define "footer" -}}
{{- partial "pagination.html" . -}}
{{- partial "footer.html" . -}}
{{- end -}}
{{- define "right" -}}
{{- partial "navigator-right.html" . -}}
{{- end -}}
|