---
permalink: /feed.xml
eleventyExcludeFromCollections: true
---
<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>{{ site.inc.blog_title }}</title>
    <link>{{ site.url }}</link>
    <atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
    <description>{{ site.inc.blog_subtitle }}</description>
    <language>en-us</language>
    <pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
    <lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>

    {% for post in collections.posts reversed %}
    {% unless post.data.draft %}
    <item>
      <title>{{ post.data.title }}</title>
      <link>{{ site.url }}{{ post.url }}</link>
      <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
      <author>{{ post.data.author.name }}</author>
      <guid>{{ site.url }}{{ post.url }}</guid>
      <description>{{ post.templateContent | xml_escape }}</description>
    </item>
    {% endunless %}
    {% endfor %}

  </channel> 
</rss>