2017-11-29 16:50:45 -05:00
|
|
|
<main class="content">
|
|
|
|
<article class="post-groups">
|
|
|
|
<div class="post-group">
|
2019-08-17 18:54:03 -04:00
|
|
|
{{ range .Pages.GroupByDate "2006" }}
|
2017-11-29 16:50:45 -05:00
|
|
|
<div class="post-group-item">
|
|
|
|
<h3>{{ .Key }}</h3>
|
|
|
|
<ul>
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li>
|
|
|
|
{{ if (not (isset .Params "externalurl")) }}
|
|
|
|
<a rel="full-article" href="{{ .Permalink }}">{{ .Title }}</a>
|
2025-01-28 13:02:01 +01:00
|
|
|
on <time datetime='{{ .Date.Format "02.01.2006" }}' pubdate="">{{ .Date.Format "2. Januar" }}</time>
|
2017-11-29 16:50:45 -05:00
|
|
|
{{ else }}
|
|
|
|
<a rel="remote-article" href="{{ .Params.externalurl }}">{{ .Title }} →</a>
|
|
|
|
on
|
2025-01-28 13:02:01 +01:00
|
|
|
<a href="{{ .Permalink }}"> <time datetime='{{ .Date.Format "02.01.2000" }}' pubdate="">{{ .Date.Format "2. Januar" }}</time> </a>
|
2017-11-29 16:50:45 -05:00
|
|
|
{{ end }}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</main>
|