{% extends "base.html" %} {% block content %} {{ section.content | safe }}

{{ trans(key="latest_articles", lang=lang) }} Atom feed

{% for page in section.pages -%} {%- set data = page.date | date(format="%s") | int -%} {%- if now(timestamp=true) - data < 31536000 -%}

{{ page.title }} ()

{%- if page.summary -%} {{ page.summary | markdown(inline=true) | safe }} {%- elif page.description %} {{ page.description | safe }} {%- elif page.content -%} {{ page.content | striptags | truncate(length=150) | safe }} {%- endif -%}

{%- endif -%} {% endfor -%} {% endblock content %}