Files
paxover/templates/partials/blog-list-item.html.twig
2023-01-13 23:11:28 +01:00

16 lines
696 B
Twig

{% set hero_image = page.media.images|first %}
<a class="card-link" href="{{ page.url }}">
<article class="blog-card">
{{ hero_image.html|absolute_url|raw }}
<div class="post-details">
<h4 class="post-meta">{{ page.date|date("d.m.Y") }}</h4>
<h2 class="post-title">{{ page.title }}</h2>
<p class="post-description">
{{ page.summary | striptags }}
</p>
<p class="post-tags">{% for tag in page.taxonomy.tag %}<span href="{{ theme_config.blog.slug }}/tag:{{tag}}">{{ tag }}</span>&ensp;{% endfor %}</p>
</div>
</article>
</a>