Convert links list to individual blog entries #11

Merged
mxmehl merged 32 commits from links-as-blog into main 2026-02-23 16:16:11 +01:00
Showing only changes of commit c356a28e6d - Show all commits

View File

@@ -11,7 +11,7 @@
<div class="container archive">
<!-- Page Title -->
{{- if $selection }}
<h1>{{ (printf "Everything from %s \"%s\"" (.Data.Singular | humanize) (humanize .Title)) | markdownify }}</h1>
<h1>{{ (printf "Everything from %s \"%s\"" (.Data.Singular | humanize) .Title) | markdownify }}</h1>
{{- else }}
<h1>{{ .Title }}</h1>
{{- end }}
@@ -53,11 +53,10 @@
</div>
<div class="col-xs-9 col-md-10">
<a class="label label-success {{if not $selection}}active{{end}}" href="/blog">All</a>
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<a class="label label-success {{if eq $name $.Title}}active{{end}}" href="{{ "/tags/" | relLangURL }}{{ $name | urlize }}">
{{- humanize $name -}}
</a>
{{- end -}}
{{ $tags := site.GetPage "/tags" }}
{{ range sort $tags.Pages "Title" "asc"}}
<a href="{{ .RelPermalink }}" class="label label-success {{if eq .LinkTitle $.Title}}active{{end}}">{{ .LinkTitle }}</a>
{{ end }}
</div>
</div>
<div class="row vertical-align">