You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.2 KiB
HTML

{{ define "main" }}
<div class="post-list-container post-list-container-shadow">
{{ range .Paginator.Pages.GroupByDate "2006" }}
<a class="a-block">
<div class="post-item-wrapper post-item-wrapper-no-hover">
<div class="post-item post-item-no-gaps">
<div class="post-item-info-wrapper">
<div class="post-item-title post-item-title-small year">
{{ .Key }}
</div>
</div>
</div>
</div>
</a>
{{ range .Pages }}
<a href="{{ .RelPermalink }}" class="a-block">
<div class="post-item-wrapper">
<div class="post-item post-item-no-gaps">
<div class="post-item-info-wrapper">
<div class="post-item-title">
{{.Title}}
</div>
{{ partial "post-item-meta.html" . }}
</div>
</div>
</div>
</a>
{{ end }}
{{ end }}
</div>
{{ end }}