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.

upcoming.html 720B

4 년 전
4 년 전
4 년 전
12345678910111213141516171819
  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. <div class="media-wrapper">
  4. {{ if (and (isset .Params "image_webp") (isset .Params "image")) }}
  5. <img class="img-fluid lozad" data-src="{{ .Params.Image_webp | absURL }}"
  6. onerror="this.onerror=null;
  7. this.src='{{ .Params.Image | absURL }}'"
  8. >
  9. {{ end }}
  10. </div>
  11. <div class="content">
  12. <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
  13. <p>{{ .Summary }}</p>
  14. <a class="btn btn-transparent" href="{{ .Permalink }}">{{ i18n "readMore" }}</a>
  15. </div>
  16. </div>
  17. </article>