vitrine/layouts/_default/list.html

12 lines
202 B
HTML
Raw Normal View History

2024-05-24 22:01:53 +02:00
{{ define "main" }}
2024-06-19 20:45:01 +02:00
<article class="content">
<div class="title">
<h1>{{ .Title }}</h1>
</div>
2024-05-24 22:01:53 +02:00
{{ .Content }}
{{ range .Pages }}
2024-06-19 20:45:01 +02:00
{{ .Render "summary" }}
2024-05-24 22:01:53 +02:00
{{ end }}
2024-06-19 20:45:01 +02:00
</article>
2024-05-24 22:01:53 +02:00
{{ end }}