9 | {{ partial "breadcrumb.html" . }}
10 |
11 |
12 | {{ range .Data.Pages }}
13 | -
14 |
15 |
16 | {{ $all := .Site.Data.authors}}
17 | {{ $authors := .Params.authors}}
18 | {{ range $author := $authors }}
19 | {{ with $a := (index $all $author)}}
20 | - {{ $a.Name }}
21 | {{ end}}
22 | {{ end }}
23 |
24 |
25 |
26 |
27 |
28 | {{ if .Draft }}Draft{{ end }}
29 | {{ .Title }}
30 | {{ .Params.short | markdownify }}
31 |
32 | {{ if .Params.tags }}
33 |
34 | Tags:
35 | {{ range .Params.tags }}
36 | {{ . }}
37 | {{ end }}
38 |
39 | {{ end }}
40 | {{ if .Params.categories }}
41 |
42 | Categories:
43 | {{ range .Params.categories }}
44 | {{ . }}
45 | {{ end }}
46 |
47 | {{ end }}
48 |
49 |
50 | {{ end }}
51 |
52 |
53 |