17 lines
581 B
Twig
17 lines
581 B
Twig
|
|
<div class="row">
|
||
|
|
{% for post in posts %}
|
||
|
|
<div class="col-fifth">
|
||
|
|
<div class="overlay bg-gradient-1"></div>
|
||
|
|
<img src="{{post.thumbnail|resize(500,500)}}" alt="{{post.title}}">
|
||
|
|
<a href="{{post.link}}" class="d-block caption">
|
||
|
|
<div class="pl-5 pr-5 pb-2 d-flex h-100 align-items-end">
|
||
|
|
<div>
|
||
|
|
<h3 class="font-weight-bold">{{ post.title|truncate(7) }}</h3>
|
||
|
|
<p class="text-uppercase">{{post.post_date|date('j F ')}} / {% for term in post.terms %}{% if loop.index == 1 %}{{term.name}}{% endif %}{% endfor %}</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|