devlog/themes/cuqui/layouts/_default/list.html

14 lines
279 B
HTML
Raw Normal View History

2024-11-13 21:14:37 +00:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
2024-11-15 12:16:56 +00:00
<ul class="page-list">
2024-11-13 21:14:37 +00:00
{{ range .Pages }}
2024-11-15 12:16:56 +00:00
<li>
2024-11-13 21:14:37 +00:00
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
2024-11-15 12:16:56 +00:00
<a href="{{ .RelPermalink }}">Read more...</a>
</li>
2024-11-13 21:14:37 +00:00
{{ end }}
2024-11-15 12:16:56 +00:00
</ul>
{{ end }}