hugo-theme-hello-amigo/layouts/_default/list.html
2019-07-25 17:13:27 -04:00

27 lines
943 B
HTML

{{ define "main" }}
<main class="posts">
<h1>{{ .Title }}</h1>
{{- if .Content }}
<div class="content">{{ .Content }}</div>
{{- end }}
{{- range .Data.Pages.GroupByDate "2006" }}
<div class="posts-group">
<div class="post-year">{{ .Key }}</div>
<ul class="posts-list">
{{- range .Pages }}
<li class="post-item">
<a href="{{.Permalink}}">
<span class="post-title">{{.Title}}</span>
<span class="post-day">{{ if .Site.Params.dateformShort }}{{ .Date.Format .Site.Params.dateformShort }}{{ else }}{{ .Date.Format "Jan 2"}}{{ end }}</span>
</a>
</li>
{{- end }}
</ul>
</div>
{{- end }}
</main>
{{ end }}