portails/layouts/_default/list.html

13 lines
337 B
HTML
Raw Normal View History

2020-04-15 15:48:16 +02:00
{{ define "main" }}
<div class="row justify-content-center">
<div class="col-md-12 col-lg-10 col-xl-8">
{{ range .Paginator.Pages }}
<article>
2021-04-02 19:45:05 +02:00
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
2020-04-15 15:48:16 +02:00
{{ .Description }}
</article>
{{ end }}
{{ template "_internal/pagination.html" . }}
</div>
</div>
{{ end }}