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

61 lines
2.7 KiB
Twig
Raw Normal View History

2025-07-24 09:31:01 +00:00
{% extends 'layouts/base.twig' %}
{% block content %}
2025-10-15 15:34:24 +00:00
<h1 class="my-5 position-relative fs-3 fw-bold sp-module-title">{{ post.title }}</h1>
2025-07-30 11:25:56 +00:00
2025-10-17 11:25:33 +00:00
<section class="section-noticias">
2025-10-08 08:06:18 +00:00
{% if posts_noticias %}
{% for noticias in posts_noticias %}
2025-10-27 16:05:52 +00:00
{% set imagen = noticias.thumbnail.src | default(imagen_default) %}
2025-10-08 08:06:18 +00:00
{% set alt = noticias.thumbnail.alt | default('Imagen por defecto') %}
2025-07-30 11:25:56 +00:00
2025-10-17 11:25:33 +00:00
<div class="card my-3 position-relative posts-noticias">
2025-08-13 08:59:26 +00:00
<div class="row g-0">
<div class="col-md-4">
2025-08-21 07:21:36 +00:00
<a href="{{ noticias.link }}" title="{{ noticias.title }}">
2025-10-08 08:06:18 +00:00
<img src="{{ imagen }}"
2025-08-21 07:21:36 +00:00
class="rounded-start object-fit-cover w-100 h-100 img-noticias"
2025-10-08 08:06:18 +00:00
alt="{{ alt }}"
2025-08-21 07:21:36 +00:00
/>
</a>
2025-08-13 08:59:26 +00:00
</div>
<div class="col-md-8">
<div class="card-body" style="padding-bottom: 60px;">
2025-08-21 07:21:36 +00:00
<a href="{{ noticias.link }}" title="{{ noticias.title }}" class="text-decoration-none card-title">
2025-10-23 09:52:45 +00:00
<h5 class="fw-bolder hover-title-text">{{ noticias.title }}</h5>
2025-08-21 07:21:36 +00:00
</a>
2025-08-13 08:59:26 +00:00
<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;"
2025-08-21 07:21:36 +00:00
>
{{ __('Sigue leyendo', 'Sindikatua') }}...
</a>
2025-08-13 08:59:26 +00:00
</div>
</div>
2025-08-07 12:03:01 +00:00
</div>
2025-07-30 11:25:56 +00:00
</div>
2025-08-07 12:03:01 +00:00
{% endfor %}
{% else %}
2025-10-09 10:32:56 +00:00
<p>{{ __('No hay artículos', 'Sindikatua') }}</p>
2025-08-07 12:03:01 +00:00
{% endif %}
2025-10-03 08:08:09 +00:00
<!-- PAGINATION -->
2025-10-09 10:32:56 +00:00
{% set pagination = posts_noticias.pagination %}
2025-10-03 08:08:09 +00:00
<div class="pagination-custom mt-5">
{% include 'partials/pagination-custom.twig' %}
</div>
2025-08-07 12:03:01 +00:00
</section>
2025-07-24 09:31:01 +00:00
{% endblock %}