website/layouts/blog/list.html

11 lines
313 B
HTML
Raw Normal View History

{{ partial "head.html" . }}
<h1>My Blogs</h1>
<hr>
{{ range (where (where .Site.RegularPages "Section" "blog") "Params.nohtml" "!=" "true") }}
<div class="list p-3 rounded-3">
<a href="{{.Permalink}}">{{.Title}}</a>
<span><br>{{.Date.Format "January 2, 2006"}}</span>
</div>
{{ end }}
{{ partial "foot.html" . }}