.github
archetypes
content
data
i18n
layouts
resources
static
themes
educenter-hugo
archetypes
assets
exampleSite
images
layouts
_default
abiturienten.html
anmeldung.html
baseof.html
cantorfora.html
cantorpreis.html
event.html
forms.html
ganztagsangebote.html
list.html
notice.html
page.html
post.html
schulchronik.html
single.html
teacher.html
wettbewerbe.html
abiturienten
abiturienten-min
about
anmeldung
author
cantorfora
cantorfora-min
cantorpreis
cantorpreis-min
contact
event
forms
ganztagsangebote
min
notice
pages
pages-nocontent
pages-nocontent-min
partials
schuelerrat
schulchronik
schulchronik-min
teacher
wettbewerbe
404.html
index.html
static
.gitignore
LICENSE
README.md
theme.toml
config.toml
16 lines
896 B
HTML
16 lines
896 B
HTML
<article class="card rounded-0 border-bottom border-primary border-top-0 border-left-0 border-right-0 hover-shadow">
|
|
<img class="card-img-top rounded-0" src="{{ .Params.Image | relURL }}" alt="{{ .Title }}">
|
|
<div class="card-body">
|
|
<!-- post meta -->
|
|
<ul class="list-inline mb-3">
|
|
<!-- post date -->
|
|
<li class="list-inline-item mr-3 ml-0"><i class="ti-calendar"></i> {{ .PublishDate.Format "02 Jan, 2006" }}</li>
|
|
<!-- author -->
|
|
<li class="list-inline-item mr-3 ml-0"><i class="ti-user"></i> <a
|
|
href="{{ `author` | relLangURL }}{{ .Params.Author | urlize }}">{{ .Params.Author | title }}</a></li>
|
|
</ul>
|
|
<h4 class="card-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
|
<p class="card-text">{{ .Summary | truncate 100 }}</p>
|
|
<a href="{{ .Permalink }}" class="btn btn-primary btn-sm">{{ i18n "read_more" }}</a>
|
|
</div>
|
|
</article> |