howdoicomputer.lol/layouts/index.html

12 lines
253 B
HTML
Raw Normal View History

2023-09-09 05:30:42 +00:00
{{ define "main" }}
<ul class="contents">
{{ range (where .Site.RegularPages "Section" "posts") }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a>
<div>
{{ .Summary }}
</div>
</li>
{{ end }}
</ul>
{{ end }}