2019-03-18 16:50:46 +01:00
{{ partial "head" . }}
2019-10-14 16:06:54 +02:00
< body >
< div id = "wrap" >
<!-- Header -->
{{ partial "header" . }}
2019-10-19 19:51:46 +02:00
<!-- is page a category or tag page? -->
{{- $selection := false -}}
{{- if (isset .Data "Singular") -}}
{{- $selection = true -}}
{{- end -}}
2019-10-14 16:06:54 +02:00
< div class = "container archive" >
2026-02-14 11:04:54 +01:00
<!-- Page Title -->
{{- if $selection }}
2026-02-22 11:32:38 +01:00
< h1 > {{ (printf "Everything from %s \"%s\"" (.Data.Singular | humanize) .Title) | markdownify }}< / h1 >
2026-02-14 11:04:54 +01:00
{{- else }}
< h1 > {{ .Title }}< / h1 >
{{- end }}
2019-10-14 16:06:54 +02:00
{{ if .Site.Params.Social.CommentsProvider }}
< p > < a href = "{{ .Site.Params.Social.CommentsProvider }}" > Subscribe< / a > to my Blog via Diaspora, Mastodon, Friendica or GNU Social. Never miss a article! Reshare, like and discuss it!< / p >
{{ end }}
2019-10-19 19:51:46 +02:00
< div class = "metadata-page" >
< div class = "row vertical-align" >
< div class = "col-xs-3 col-md-2 text-right" >
2026-02-12 23:48:38 +01:00
< em > Type:< / em >
2019-10-19 19:51:46 +02:00
< / div >
< div class = "col-xs-9 col-md-10" >
< a class = "label label-success {{if not $selection}}active{{end}}" href = "/blog" > All< / a >
2026-02-12 23:48:38 +01:00
{{- range $name, $taxonomy := .Site.Taxonomies.categories }}
{{- if in (slice "english" "deutsch") $name }}{{ continue }}{{ end }}
2019-10-19 19:51:46 +02:00
< a class = "label label-success {{if eq $name $.Title}}active{{end}}" href = "{{ " / categories / " | relLangURL } } { { $ name | urlize } } " >
{{- humanize $name -}}
< / a >
2026-02-12 23:48:38 +01:00
{{- end }}
2019-10-19 19:51:46 +02:00
< / div >
< / div >
< div class = "row vertical-align" >
< div class = "col-xs-3 col-md-2 text-right" >
2026-02-12 23:48:38 +01:00
< em > Language:< / em >
< / 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.categories }}
{{- if not (in (slice "english" "deutsch") $name) }}{{ continue }}{{ end }}
< a class = "label label-success {{if eq $name $.Title}}active{{end}}" href = "{{ " / categories / " | relLangURL } } { { $ name | urlize } } " >
{{- humanize $name -}}
< / a >
{{- end }}
< / div >
< / div >
< div class = "row" >
< div class = "col-xs-3 col-md-2 text-right" >
< em > Tag:< / em >
2019-10-19 19:51:46 +02:00
< / div >
< div class = "col-xs-9 col-md-10" >
< a class = "label label-success {{if not $selection}}active{{end}}" href = "/blog" > All< / a >
2026-02-22 11:32:38 +01:00
{{ $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 }}
2019-10-19 19:51:46 +02:00
< / div >
< / div >
< div class = "row vertical-align" >
< div class = "col-xs-3 col-md-2 text-right" >
< em > RSS Feed:< / em >
< / div >
< div class = "col-xs-9 col-md-10" >
{{ if $selection }}
< span class = "article-rss" > < a class = "label label-rss" href = "/{{ .Data.Plural }}/{{lower .Title}}/index.xml" title = "RSS Feed" > < i class = "fa fa-rss" aria-hidden = "true" > < / i > Subscribe to »{{.Title}}«< / a > < / span >
{{ else }}
2019-10-21 20:05:58 +02:00
< span class = "article-rss" > < a class = "label label-rss" href = "/blog/index.xml" title = "RSS Feed" > < i class = "fa fa-rss" aria-hidden = "true" > < / i > Subscribe to all posts< / a > < / span >
2019-10-19 19:51:46 +02:00
{{ end }}
< / div >
< / div >
< / div >
2025-03-21 23:28:49 +01:00
2019-10-14 16:06:54 +02:00
< div class = "panel panel-default panel-overview" >
< div class = "blogpost" >
2019-10-18 19:05:19 +02:00
{{ range .Paginator.Pages.ByPublishDate.Reverse }}
2019-10-14 16:06:54 +02:00
< div class = "blog-summary" >
2026-02-14 11:04:54 +01:00
< h2 >
2026-02-12 22:57:49 +01:00
{{ partial "blog/pre-headline.html" . -}}
2026-02-14 11:04:54 +01:00
< a href = "{{ .RelPermalink }}" > {{ .Title | markdownify }}< / a >
< / h2 >
2026-02-12 20:55:29 +01:00
< div class = "metadata-summary" >
{{- partial "blog/verb.html" . }}
on {{ .Date.Format "2 January 2006" }} - Tagged with {{ range $i, $tag := .Params.tags }}{{ if $i }}, {{ end }}< a href = "/tags/{{ lower $tag }}" > {{ $tag }}< / a > {{ end }}
< / div >
2025-03-21 23:28:49 +01:00
{{ .Summary }} < a class = "learn-more" href = "{{ .RelPermalink }}" > < / a >
2019-03-18 16:50:46 +01:00
< / div >
2019-10-14 16:06:54 +02:00
{{ end }}
2026-02-22 15:22:32 +01:00
< div id = "pagination" > {{ template "_internal/pagination.html" . }}< / div >
2019-10-14 16:06:54 +02:00
< / div >
2019-03-18 16:50:46 +01:00
< / div >
< / div >
2019-10-14 16:06:54 +02:00
< / div >
<!-- Footer -->
{{ partial "footer" . }}
2019-10-22 19:55:52 +02:00
<!-- JS -->
{{ partial "js" . }}
<!-- Matomo -->
{{ partial "matomo" . }}
2019-10-14 16:06:54 +02:00
< / body >
2019-03-18 16:50:46 +01:00
< / html >