{% extends "layout/base.html" %} {% block content %}
{% if noticias|length > 0 %} {% for noticia in noticias %}

{{ noticia.titulo }}

por {{ noticia.autor }}

Publicado el {{ noticia.fecha_publicacion|date("d/m/Y") }}


{% if (noticia.imagen|length) %} {{ noticia.titulo }}
{% endif %} {{ noticia.resumen|raw}} Leer más {% endfor %} {% endif %}
{% if noticias %} {% else %}

No hay resultados

No se han encontrado noticias publicadas o con la búsqueda realizada

{% endif %}
{% include 'layout/buscador.html' %} {% include "noticias/ultimas-noticias.html" %} {% include "macros/arbol-categorias.html" %}
{% endblock %} {% block javascript %} {% include 'layout/paginador.html' %} {% endblock %}