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