fmartingr.com/themes/fmartingr/layouts/_default/home.html

14 lines
549 B
HTML

{{ define "main" }}
<div class="home center">
<h1 class="title">Latest blog posts</h1>
{{ range where site.RegularPages "Section" "blog" | first 10 }}
<div class="article{{ if gt .Date.Unix now.Unix }} future-post{{ end }}">
<h2 class="text-size-normal"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
<div class="info">
{{ partial "svg/calendar-event.svg" (dict "size" 24) }}
<span>{{ time.Format "January 2, 2006" .Date }}</span>
</div>
</div>
{{ end }}
</div>
{{ end }}