{% extends 'layouts/base.twig' %} {% block content %}

{{ post.title }}

{% if posts_industry |length > 0 %} {% for noticias in posts_industry %} {% set imagen = noticias.thumbnail.src | default(imagen_default) %} {% set alt = noticias.thumbnail.alt | default('Imagen por defecto') %}
{{ alt }}
{{ noticias.title }}

{{noticias.content}}

{% endfor %} {% else %}

{{ __('No hay artículos', 'Sindikatua') }}

{% endif %} {% if pagination %}
{% include 'partials/pagination-custom.twig' %}
{% endif %}
{% endblock %}