devroom.io/themes/devroom-2024/layouts/partials/home.html

24 lines
733 B
HTML
Raw Normal View History

2024-01-24 10:48:34 +00:00
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
<div class="narrow">
<p>{{ .Site.Params.info }}</p>
<p><a href="/about">Read more about me &raquo;</a></p>
</div>
<div class="narrow">
{{ range $pages.GroupByDate "2006" }}
<h2 class="year">{{ .Key }}</h2>
<div class="post-feed">
{{ range .Pages }}
<article class="post">
<div class="calendar">{{ time.Format "02 Jan" .Date }}</div>
<h2 class="title">{{ .Title }}</h2>
<div class="actions">{{ .ReadingTime }} min read &raquo;</div>
<a class="permalink" href="{{ .Params.ExternalLink | default .RelPermalink }}"></a>
</article>
{{ end }}
</div>
{{ end }}
</div>