blob: 92a2d5548af0dfb1aa74d4c24f72783377544c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{- $caption := .Inner }}
{{ $lastLetter := "Dupa" }}
{{ with resources.Get "more/bookmarks.yml"}}
{{ with . | transform.Unmarshal }}
<ul>
{{ range (sort .bookmarks ".date" "desc") }}
<li>
{{ .date }}
-
<a href="{{ .url }}">{{ .title }}</a>
({{ .host }})
{{ end }}
</ul>
{{ end }}
{{ end }}
|