tcharles.fr/layouts/_default/list.html
2025-02-07 20:32:59 +01:00

25 lines
553 B
HTML

{{ define "main" }}
<!-- <article>
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
</article> -->
{{ range .Pages }}
<article class="partial">
<h1><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h1>
{{ .Summary }}
<!-- {{ .Content }} -->
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Read more</a>
{{ end }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</article>
{{ end }}
{{ end }}