--- description: read_more_text: "Read more..." language: categories: ttl: layout: none format: none post_count: 10 content_type: xml --- {{site.title}} {% if page.description %} {{page.description}} {% else %} Latest news from {{site.title}} {% endif %} {{site.root}} {{now|atomdate}} {% for post in blog.posts.limit(page.post_count) %} {% set author = site.author %} {% if post.author %}{% set author = post.author %}{% endif %} {% if not author %}{{pcfail("Atom feeds require an author for each post. You can specify a global author with the 'site.author' config.")}}{% endif %} {{post.title}} {{post.url}} {{post.timestamp|atomdate}} {{post.content}} {% if post.has_more and page.read_more_text %} {{ ("" ~ page.read_more_text ~ "")|escape }} {% endif %} {% if author %} {{author}} {% endif %} {% endfor %}