<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title>Ordered List</title>
  <link href="https://orderedlist.com/"/>
  <link type="application/atom+xml" rel="self" href="https://orderedlist.com/atom.xml"/>
  <updated>{{ site.time | date_to_xmlschema }}</updated>
  <id>https://orderedlist.com/</id>
  <author>
    <name>Steve Smith</name>
    <email>steve@orderedlist.com</email>
  </author>

  {% for post in site.posts %}
  <entry>
    <id>https://orderedlist.com{{ post.id }}</id>
    <link type="text/html" rel="alternate" href="http://orderedlist.com{{ post.url }}"/>
    <title>{{ post.title | xml_escape }}</title>
    <updated>{{ post.date | date_to_xmlschema }}</updated>
    <author>
      <name>Steve Smith</name>
      <uri>https://orderedlist.com/</uri>
    </author>
    <content type="html">{{ post.content | xml_escape }}</content>
  </entry>
  {% endfor %}

</feed>
