blog-listing-card.html 982 B

1234567891011121314151617181920212223242526
  1. <div class="blog-listing-card">
  2. <a class="blog-listing-card__link" href="{{ pageurl(blog) }}">
  3. {% if blog.image %}
  4. <figure class="blog-listing-card__image">
  5. {{ image(blog.image, "fill-322x247-c100", loading="lazy") }}
  6. </figure>
  7. {% endif %}
  8. <div class="blog-listing-card__contents">
  9. <h2 class="blog-listing-card__title">{{ blog.title }}</h2>
  10. {% if blog.introduction %}
  11. <p class="blog-listing-card__introduction">{{ blog.introduction|truncatewords(15) }}</p>
  12. {% endif %}
  13. <p class="blog-listing-card__metadata">
  14. {% if blog.date_published %}
  15. {{ blog.date_published|date("DATE_FORMAT") }} by
  16. {% endif %}
  17. {% for author in blog.authors() %}
  18. {{ author }}{% if not loop.last %}, {% endif %}
  19. {% endfor %}
  20. </p>
  21. </div>
  22. </a>
  23. </div>