aboutsummaryrefslogtreecommitdiff
path: root/layouts/blog/list.html
blob: b48975eed1eb37a32bb1da679b63db5abb69b9f6 (plain)
1
2
3
4
5
6
7
8
9
10
{{ partial "head.html" . }}
<h1>My Blog</h1>
<hr>
{{ range (where (where .Site.RegularPages "Section" "blog") "Params.nohtml" "!=" "true") }}
<div class="list p-3 rounded-3">
<a href="{{.RelPermalink}}">{{.Title}}</a>
<span><br>{{.Date.Format "January 2, 2006"}}</span>
</div>
{{ end }}
{{ partial "foot.html" . }}