{% if site.url %} {% assign url_base = site.url | append: site.baseurl %} {% else %} {% assign url_base = site.github.url %} {% endif %} Jekyll {{ site.time | date_to_xmlschema }} {{ url_base | xml_escape }}/ {% if site.name %} {{ site.name | xml_escape }} {% endif %} {% if site.description %} {{ site.description | xml_escape }} {% endif %} {% if site.author %} {% if site.author.name %} {{ site.author.name | xml_escape }} {% else %} {{ site.author | xml_escape }} {% endif %} {% if site.author.email %} {{ site.author.email | xml_escape }} {% endif %} {% if site.author.uri %} {{ site.author.uri | xml_escape }} {% endif %} {% endif %} {% for post in site.posts limit: 10 %} {{ post.title | markdownify | strip_html | strip_newlines | xml_escape }} {{ post.date | date_to_xmlschema }} {% if post.last_modified_at %} {{ post.last_modified_at | date_to_xmlschema }} {% else %} {{ post.date | date_to_xmlschema }} {% endif %} {{ post.id | prepend: url_base | xml_escape }} {{ post.content | markdownify | xml_escape }} {% if post.author %} {% if post.author.name %} {{ post.author.name | xml_escape }} {% else %} {{ post.author | xml_escape }} {% endif %} {% if post.author.email %} {{ post.author.email | xml_escape }} {% endif %} {% if post.author.uri %} {{ post.author.uri | xml_escape }} {% endif %} {% endif %} {% if post.category %} {% endif %} {% for tag in post.tags %} {% endfor %} {% if post.excerpt %} {{ post.excerpt | markdownify | strip_html | strip_newlines | xml_escape }} {% endif %} {% endfor %}