Rinkusu/layouts/_default/article.html

16 lines
649 B
HTML
Raw Normal View History

2021-06-17 13:41:05 +00:00
<article class="col-lg-4 col-md-6 col-12 clearfix wow fadeInUp mb-4" data-wow-duration="500ms">
<div class="post-block border-glow-2">
<div class="media-wrapper">
<img class="img-fluid lozad" src="{{ .Params.Image_webp | absURL }}" onerror="this.onerror=null;this.src='{{ .Params.image | absURL }}'">
</div>
2022-02-02 09:10:19 +00:00
{{ partial "get_tags.html" . }}
2021-06-17 13:41:05 +00:00
<div class="content">
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<p>{{ .Summary }}</p>
<a class="btn btn-transparent" href="{{ .Permalink }}">{{ i18n "readMore" }}</a>
</div>
</div>
</article>