2023-04-03 21:45:44 +02:00
|
|
|
<div class="card border-primary rounded-0 hover-shadow mb-4">
|
|
|
|
<a href="{{ .Permalink }}"><img class="card-img-top rounded-0" src="{{ .Params.image | relURL }}" alt="{{ .Title }}"></a>
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="row mb-2">
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="col-6"><i class="mdi mdi-calendar-today me-2"></i>{{ time.Format "02. Jan 2006" .PublishDate }}</div>
|
2023-04-03 21:45:44 +02:00
|
|
|
<div class="col-6">
|
2023-04-04 18:34:22 +02:00
|
|
|
<i class="mdi mdi-fountain-pen-tip me-2"></i>
|
2023-04-03 21:45:44 +02:00
|
|
|
<a href="{{ `author` | relLangURL }}/{{ .Params.author | urlize }}">{{ .Params.author | title }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-04 18:34:22 +02:00
|
|
|
<h4 class="card-title"><a href="{{ .Permalink }}">{{ .Title | truncate 30 }}</a></h4>
|
2023-04-03 21:45:44 +02:00
|
|
|
<p class="card-text">{{ .Summary | truncate 100 }}</p>
|
|
|
|
<a href="{{ .Permalink }}" class="btn btn-primary btn-sm" data-pagefind-ignore>{{ i18n "read_more" }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|