blob: 569af845b6b667e390243199ac60e6f312aa9495 (
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
|
{{ define "styles" }}
{{ $author := partial "author-user.html" . }}
<style>
{{ partial "styles-navigator.html" (dict "Link" "/") | safeCSS }}
tab-bar a[href="{{ .Site.BaseURL }}/{{ $author }}/drafts/"] {
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" "Drafts"
"Subtitle" (partial "count-drafts.html" .)
"Icon" "arrow-left"
"IconLabel" "Back"
"Href" "/"
"Id" "back"
"Context" .
)
}}
{{ partial "profile.html" . }}
{{- $author := partial "author-user.html" . -}}
{{- $users := where .Site.RegularPages "Section" $author -}}
{{- $drafts := where .Site.RegularPages "Draft" true -}}
{{- $filteredPages := $users | intersect $drafts -}}
{{- $paginator := .Paginate $filteredPages }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ else }}
<footer>
<code>No drafts found!</code>
</footer>
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}
{{ define "right" }}
{{- partial "navigator-right.html" . -}}
{{ end }}
|