File: /var/www/delta/wp-content/themes/delta/templates/partials/small-post-card.twig
<a href="{{ function('get_permalink', post.ID) }}" >
<div class="blog-list__single">
<div class="blog-list__single-img">
<img src="{{ function('get_the_post_thumbnail_url', post.ID) }}" alt="{{ post.post_title }}" >
</div>
<div class="blog-list__single-wrap">
<div class="blog-list__single-title">
<div class="blog-list__single-date">
<h6 class="p">{{ post.date|date("M d, Y") }}</h6>
{% set number_of_words = post.post_content|split(' ')|length %}
{% set read_time = (number_of_words / words_per_minute)|round(0, 'ceil') %}
<h6 class="p blog-list__single-read">{{ read_time }} {{ t('min read') }}</h6>
</div>
<h5 class="t-700">{{ post.post_title }}</h5>
</div>
<div class="blog-list__single-content">
{{ post.post_excerpt }}
</div>
</div>
</div>
</a>