{% 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.title %} {{ site.title | smartify | xml_escape }} {% elsif site.name %} {{ site.name | smartify | 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 %} {% unless post.draft %} {{ post.title | smartify | strip_html | replace: '\n', ' ' | strip | 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 | strip | xml_escape }} {% assign post_author = post.author | default: post.authors[0] | default: site.author %} {% assign post_author = site.data.authors[post_author] | default: post_author %} {% assign post_author_email = post_author.email | default: nil %} {% assign post_author_uri = post_author.uri | default: nil %} {% assign post_author_name = post_author.name | default: post_author %} {% if post_author %} {{ post_author_name | xml_escape }} {% 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 and post.excerpt != empty %} {{ post.excerpt | strip_html | replace: '\n', ' ' | strip | xml_escape }} {% endif %} {% assign post_image = post.image.path | default: post.image %} {% if post_image %} {% unless post_image contains "://" %} {% assign post_image = post_image | prepend: url_base | xml_escape %} {% endunless %} {% endif %} {% endunless %} {% endfor %}