{% if noticia.fecha %}
{% if noticia.fecha is string %}
{{ noticia.fecha }}
{% else %}
{{ noticia.fecha.strftime('%d-%m-%Y %H:%M') }}
{% endif %}
{% else %}
N/D
{% endif %}
{% if noticia.fuente_nombre %}
| {{ noticia.fuente_nombre }}
{% endif %}
{% if noticia.categoria %}
| {{ noticia.categoria }}
{% endif %}
{% if noticia.pais %}
| {{ noticia.pais }}
{% endif %}
{% set resumen_txt = noticia.resumen | safe_html %}
{{ resumen_txt | truncate(280, True) }}
{{ resumen_txt }}
{% if noticia.resumen and noticia.resumen|length > 280 %}
{% endif %}