You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. <article class="col-lg-4 col-md-6 col-12 clearfix wow fadeInUp mb-4" data-wow-duration="500ms">
  2. <div class="post-block">
  3. {{if isset .Params "image_webp"}}
  4. <div class="media-wrapper">
  5. <img class="img-fluid lozad" data-src="{{ .Params.Image_webp | absURL }}" onerror="this.onerror=null;this.src='{{ .Params.Image | absURL }}'">
  6. </div>
  7. {{end}}
  8. <div class="content">
  9. <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
  10. <p>{{ .Summary }}</p>
  11. <a class="btn btn-transparent" href="{{ .Permalink }}">{{ i18n "readMore" }}</a>
  12. </div>
  13. </div>
  14. </article>