diff --git a/themes/hugo-sustain/layouts/_default/list.html b/themes/hugo-sustain/layouts/_default/list.html index 4ff2954..cfe79ad 100644 --- a/themes/hugo-sustain/layouts/_default/list.html +++ b/themes/hugo-sustain/layouts/_default/list.html @@ -11,7 +11,7 @@
{{- if $selection }} -

{{ (printf "Everything from %s \"%s\"" (.Data.Singular | humanize) (humanize .Title)) | markdownify }}

+

{{ (printf "Everything from %s \"%s\"" (.Data.Singular | humanize) .Title) | markdownify }}

{{- else }}

{{ .Title }}

{{- end }} @@ -53,11 +53,10 @@
All - {{ range $name, $taxonomy := .Site.Taxonomies.tags }} - - {{- humanize $name -}} - - {{- end -}} + {{ $tags := site.GetPage "/tags" }} + {{ range sort $tags.Pages "Title" "asc"}} + {{ .LinkTitle }} + {{ end }}