Files
assets
content
data
i18n
layouts
_default
abiturienten.html
baseof.html
begabtenfoerderung.html
cantorfora.html
cantorpreis.html
forms.html
ganztagsangebote.html
list.html
page.html
post.html
schulchronik.html
single.html
wettbewerbe.html
abiturienten
about
anmeldeformular
anmeldung
author
begabtenfoerderung
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
schulchronik
shortcodes
termine
wettbewerbe
404.html
index.html
static
.drone.yml
.gitignore
.gitlab-ci.yml
.mailmap
config.yml
gcg-website/layouts/_default/begabtenfoerderung.html

15 lines
678 B
HTML
Raw Normal View History

2022-06-18 17:32:32 +02:00
<div class="card border-primary rounded-0 hover-shadow mb-5">
2022-06-20 20:33:12 +02:00
{{ if .Params.Image }}
2022-06-18 17:32:32 +02:00
<img class="card-img-top rounded-0" src="{{ .Params.Image | relURL }}" alt="{{ .Title }}">
2022-06-20 20:33:12 +02:00
{{ else }}
2023-01-14 17:31:54 +01:00
<img class="card-img-top rounded-0" src="/media/begabtenfoerderung/image.webp" alt="{{ .Title }}">
2022-06-20 20:33:12 +02:00
{{ end }}
2022-06-18 17:32:32 +02:00
<div class="card-body">
<ul class="list-inline">
<li class="list-inline-item"><p><i class="fa-solid fa-book-bookmark"></i> {{ .Params.Category }}</p></li>
</ul>
<h4 class="card-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
<a href="{{ .Permalink }}" class="btn btn-primary btn-sm text-uppercase">{{ i18n "read_more"}}</a>
</div>
</div>