--- layout: null title: "Atom Feed" permalink: /atom.xml --- {{ site.url }}{{ site.baseurl }}/ {{ site.title | xml_escape }} {{ site.time | date_to_xmlschema }} {{ site.description | xml_escape }} {% if site.author %} {% assign author = site.data.authors[site.author] %} {% if author.name %} {{ author.name | xml_escape }} {% else %} {{ site.author | xml_escape }} {% endif %} {% if author.email %} {{ author.email | xml_escape }} {% endif %} {% if author.uri %} {{ author.uri | xml_escape }} {% endif %} {% endif %} Jekyll {% for post in site.posts limit: 10 %} {{ site.url }}{{ site.baseurl }}{{ post.url }} {{ post.title | strip_html | strip_newlines | xml_escape }} {{ post.date | date_to_xmlschema }} {% if post.author %} {% assign author = site.data.authors[post.author] %} {% if author.name %} {{ author.name | xml_escape }} {% else %} {{ post.author | xml_escape }} {% endif %} {% if author.email %} {{ author.email | xml_escape }} {% endif %} {% if author.uri %} {{ author.uri | xml_escape }} {% endif %} {% endif %} {{ post.teaser | xml_escape }} {{ post.content | xml_escape }} {% for category in post.categories %} {% endfor %} {% for tag in post.tags %} {% endfor %} {{ post.date | date_to_xmlschema }} {% endfor %}