Rinkusu/layouts/_default/article.html

17 lines
686 B
HTML
Raw Normal View History

<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>
<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>