2024-02-12 18:36:09 +01:00
|
|
|
<article class="col-sm-6 col-lg-4 mb-4 clearfix" data-wow-duration="500ms">
|
|
|
|
<div class="card post-block border-glow-2">
|
|
|
|
<div class="card-img">
|
2024-10-06 00:22:32 +02:00
|
|
|
<img class="img-fluid" src="{{ .Params.image | absURL }}" alt="{{ .Params.image_alt }}">
|
2021-06-17 15:41:05 +02:00
|
|
|
</div>
|
2022-02-02 10:10:19 +01:00
|
|
|
|
|
|
|
{{ partial "get_tags.html" . }}
|
2021-06-17 15:41:05 +02:00
|
|
|
|
2024-09-11 22:55:13 +02:00
|
|
|
<div class="content pt-0">
|
2024-09-12 20:20:35 +02:00
|
|
|
<small>{{ .Params.Date | time.Format "2006-01-02" }}</small>
|
2021-06-17 15:41:05 +02:00
|
|
|
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
|
2024-09-12 20:17:40 +02:00
|
|
|
<p>{{ .Plain | htmlUnescape | truncate 256 }}</p>
|
2021-06-17 15:41:05 +02:00
|
|
|
<a class="btn btn-transparent" href="{{ .Permalink }}">{{ i18n "readMore" }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article>
|