Files
cnt-sindikatua/views/templates/page-noticias.twig

45 lines
1.8 KiB
Twig
Raw Normal View History

2025-07-24 09:31:01 +00:00
{% extends 'layouts/base.twig' %}
{% block content %}
2025-08-07 12:03:01 +00:00
<p class="mb-5 position-relative fs-4 fw-bold sp-module-title">NOTICIAS</p>
2025-07-30 11:25:56 +00:00
2025-08-07 12:03:01 +00:00
<section class="posts-noticias">
{% if recent_posts_noticias %}
{% for noticias in recent_posts_noticias %}
2025-07-30 11:25:56 +00:00
2025-08-07 12:03:01 +00:00
<div class="card my-3 position-relative">
<div class="row g-0">
<div class="col-md-4">
<img src="{{ noticias.thumbnail.src }}"
class="rounded-start object-fit-cover w-100 h-100"
alt="{{ noticias.thumbnail.alt }}"
style="min-height: 200px;"
/>
</div>
<div class="col-md-8">
<div class="card-body" style="padding-bottom: 60px;">
<h5 class="card-title">{{ noticias.title }}</h5>
<p class="card-text"> {{
noticias.excerpt({
words: 50,
read_more: ''
})
}}</p>
<p class="card-text"><small class="text-body-secondary">{{ noticias.date }}</small></p>
<a href="{{ noticias.link }}"
class="btn position-absolute btn-secondary-cnt"
style="position: absolute; bottom: 15px; right: 15px; z-index: 10;"
>Sigue leyendo...</a>
</div>
</div>
2025-07-30 11:25:56 +00:00
</div>
</div>
2025-08-07 12:03:01 +00:00
{% endfor %}
{% else %}
<h2>no hay artículos</h2>
{% endif %}
</section>
2025-07-24 09:31:01 +00:00
{% endblock %}