2025-11-15 22:06:43 +01:00
|
|
|
{{ define "main" }}
|
|
|
|
|
|
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
2025-11-16 18:50:41 +01:00
|
|
|
{{ range .Pages }}
|
2025-11-15 22:06:43 +01:00
|
|
|
<section class="present">
|
2025-11-16 18:50:41 +01:00
|
|
|
<h4><a href="{{ .RelPermalink }}">
|
|
|
|
|
<img alt="{{ .Title }}" src="//placehold.co/150x150">
|
|
|
|
|
</a></h4>
|
2025-11-15 22:06:43 +01:00
|
|
|
{{ end }}
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
{{ end }}
|