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

16 lines
356 B
HTML

{{ define "main" }}
<section class="blog-posts">
{{ range .Pages }}
<article class="post">
<h3><a href="{{.Permalink}}">{{.Title}}</a></h3>
{{ if .Truncated }}
{{.Summary}}
<a href="{{.Permalink}}">Read more →</a>
{{ else }}
{{.Content}}
{{ end }}
</article>
{{ end }}
</section>
{{ end }}