25 lines
924 B
HTML
25 lines
924 B
HTML
<main class="content">
|
|
<article class="post-groups">
|
|
<div class="post-group">
|
|
{{ range .Pages.GroupByDate "2006" }}
|
|
<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>
|
|
on <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate="">{{ .Date.Format "January 2" }}</time>
|
|
{{ else }}
|
|
<a rel="remote-article" href="{{ .Params.externalurl }}">{{ .Title }} →</a>
|
|
on
|
|
<a href="{{ .Permalink }}"> <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate="">{{ .Date.Format "January 2" }}</time> </a>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
</main>
|