Files
cnt-sindikatua/views/partials/tease.twig

30 lines
1.3 KiB
Twig
Raw Normal View History

2025-08-13 08:58:35 +00:00
<article class="tease tease-{{ post.type }} border border-black rounded my-3 p-2 position-relative"
id="tease-{{ post.id }}"
style="padding-bottom: 65px !important;">
<div class="row align-items-center section-tease">
<!-- Columna izquierda: título y excerpt -->
<div class="col">
<h2 class="h2">
<a href="{{ post.link }}"
class="text-decoration-none text-dark link-underline-animate">
{{ post.title }}</a>
</h2>
<p>{{ post.excerpt({
words: 50,
read_more: ''
})
}}</p>
<a href="{{ post.link }}"
class="btn position-absolute btn-secondary-cnt"
style="position: absolute; bottom: 15px; right: 15px; z-index: 10;"
>Sigue leyendo...</a>
</div>
<!-- Columna derecha: imagen (si existe) -->
{% if post.thumbnail %}
<div class="col-auto text-end">
<img src="{{ post.thumbnail.src }}" style="max-height: 100px;" alt="{{ post.title }}" class="img-fluid ms-auto d-block" />
</div>
{% endif %}
</div>
2025-07-14 07:33:32 +00:00
</article>