1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2025-03-04 08:59:18 +00:00
danbarber.me.hugo/layouts/section/blog.html

22 lines
506 B
HTML

{{ define "main" }}
<section class="blog-posts">
{{ range .Pages }}
<article class="post">
<header>
<h3 class="post__title"><a href="{{.Permalink}}">{{.Title}}</a></h3>
<p class="post__date">{{.Date.Format "Jan 2, 2006"}}</p>
</header>
{{ if .Truncated }}
{{.Summary}}
<p class="post__read-more"><a href="{{.Permalink}}">Read on →</a></p>
{{ else }}
{{.Content}}
{{ end }}
</article>
{{ end }}
</section>
{{ end }}