.gitea
assets
content
data
layouts
_default
abiturienten
about
alumninetzwerk
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
authors.html
blog-sidebar.html
card-article.html
card-btn.html
card-category.html
collapsible.html
download.html
filter-controls.html
footer.html
ganztag.html
head.html
header-contest.html
header.html
icon-element.html
info.html
modal.html
opengraph.html
page-header.html
pagination.html
preloader.html
related.html
summary.html
termin.html
tile-modals.html
twitter.html
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
.mailmap
LICENSE
config.yml
16 lines
893 B
HTML
16 lines
893 B
HTML
<div class="card border-primary rounded-0 hover-shadow mb-2">
|
|
<a href="{{ .Permalink }}"><img class="card-img-top rounded-0" src="{{ .Params.image | relURL }}" alt="{{ .Title }}"></a>
|
|
<div class="card-body d-flex flex-column">
|
|
<div class="d-flex justify-content-between gap-1 flex-wrap mb-2">
|
|
<span><i class="mdi mdi-calendar-today me-2"></i>{{ time.Format "02. Jan 2006" .PublishDate }}</span>
|
|
<span class="text-truncate">
|
|
<i class="mdi mdi-fountain-pen-tip me-2"></i>
|
|
{{ partial "authors" (dict "Site" .Site "author" .Params.author )}}
|
|
</span>
|
|
</div>
|
|
<h4 class="card-title text-truncate"><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
|
<p class="card-text">{{ partial "summary" .Summary }}</p>
|
|
<a href="{{ .Permalink }}" class="btn btn-primary btn-sm mt-auto align-self-start" data-pagefind-ignore>Mehr anzeigen</a>
|
|
</div>
|
|
</div>
|