Files
hugo_it-services/themes/poison/layouts/_default/list.html
T
2025-02-20 08:28:31 -05:00

19 lines
580 B
HTML

{{ define "main" -}}
<h1 class="title">{{ .Title }}</h1>
<ul class="entries">
{{ range .Pages.GroupByDate "2006" }}
<h3 style="text-align: center;">{{ .Key }}</h3>
{{ range .Pages }}
<li>
<span class="title">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</span>
<span class="published">
<time class="pull-right post-list">{{ .Date | time.Format ":date_long" }}</time>
</span>
</li>
{{ end }}
{{ end }}
</ul>
{{ end }}