erynwells.me/layouts/blog/list.html

28 lines
794 B
HTML
Raw Normal View History

2022-09-11 10:40:25 -07:00
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
{{ range .Pages.ByDate.GroupByDate "2006" }}
2022-10-15 10:02:45 -07:00
<h2>{{ .Key }}</h2>
<ul class="post-list">
2022-09-11 10:40:25 -07:00
{{ range .Pages }}
2022-10-15 10:02:45 -07:00
{{ if or (not .Draft) (and .Draft (not hugo.IsProduction)) }}
<li>
<h1>
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ partial "development/draft_tag.html" . }}
</h1>
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "January" }}</time>
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "2" }}</time>
</li>
{{ end }}
2022-09-11 10:40:25 -07:00
{{ end }}
2022-10-15 10:02:45 -07:00
</ul>
2022-09-11 10:40:25 -07:00
{{ end }}
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}