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

24 lines
482 B
HTML
Raw Normal View History

2024-11-13 21:14:37 +00:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
2024-11-15 15:12:36 +00:00
{{$isTags := strings.Contains .Title "Tags"}}
2024-11-15 18:07:17 +00:00
{{if $isTags}}
<ul class="post-tags">
{{end}}
{{if $isTags}}
{{else}}
<ul class="page-list">
{{end}}
2024-11-13 21:14:37 +00:00
{{ range .Pages }}
2024-11-15 12:16:56 +00:00
<li>
2024-11-15 15:12:36 +00:00
<h2 class="center"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
2024-11-13 21:14:37 +00:00
{{ .Summary }}
2024-11-15 15:12:36 +00:00
{{if $isTags}}
{{else}}
2024-11-15 12:16:56 +00:00
<a href="{{ .RelPermalink }}">Read more...</a>
2024-11-15 15:12:36 +00:00
{{end}}
2024-11-15 12:16:56 +00:00
</li>
2024-11-13 21:14:37 +00:00
{{ end }}
2024-11-15 12:16:56 +00:00
</ul>
{{ end }}