{{ digest.run_date }}
{% if digest.day_summary %}
{{ digest.day_summary | nl2br }}
{% endif %} {% for section in digest.recaps %}
{{ section.title }}
{% if section.summary %}
{{ section.summary }}
{% endif %} {% for idx in section.block_indices %} {% set block = digest.blocks[idx] %}
{{ block.title | nl2br }}
{% if block.summary %}
{{ block.summary | nl2br }}
{% endif %}
{% for art_id in block.article_ids %} {% set art = article_map.get(art_id) %} {% if art %}
{{ art.enriched_title or art.title }}
— {{ art.source }}, {{ art.published_at[:10] }}
{% endif %} {% endfor %}
{% endfor %}
{% endfor %}