Files
.gitea
assets
content
data
layouts
_default
abiturienten
about
alumninetzwerk
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
list.html
single.html
ganztagsangebote
kontakt
pages
partials
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
.mailmap
LICENSE
config.yml
go.mod
go.sum
gcg-website/layouts/forms/list.html

18 lines
589 B
HTML
Raw Normal View History

2022-03-18 13:35:57 +01:00
{{ define "main" }}
2023-06-11 21:13:11 +02:00
<section class="section">
2022-03-18 13:35:57 +01:00
<div class="container">
{{ range .Data.Pages }}
<div class="card flex-row border-primary hover-shadow p-4 mb-2 align-items-center flex-wrap gap-3">
<div class="flex-grow-1">
<a href="{{ .Permalink }}" class="h4 mb-3 card-title">{{ .Title }}</a>
<p class="mb-0">{{ partial "summary" .Content }}</p>
</div>
<div class="flex-shrink-0" data-pagefind-ignore><a href="{{ .Permalink }}" class="btn btn-primary">Mehr anzeigen</a></div>
2022-03-19 10:21:45 +01:00
</div>
{{ end }}
2022-03-18 13:35:57 +01:00
</div>
</section>
{{ end }}