vitrine/layouts/_default/list.html

12 lines
202 B
HTML
Raw Normal View History

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