--- layout: null --- Jekyll {% assign feed_path = "/feed.xml" %} {% if site.feed and site.feed.path %} {% assign feed_path = site.feed.path %} {% endif %} {{ site.time | date_to_xmlschema }} {{ '/' | absolute_url | 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 %} {{ site.author.name | default: site.author | xml_escape }} {% 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: 20 %} {% unless post.draft %} {% if post.external-url %} {{ post.title | append: " →" | smartify | strip_html | normalize_whitespace | xml_escape }} {% else %} {{ post.title | smartify | strip_html | normalize_whitespace | xml_escape }} {% endif %} {% if post.external-url %} {% else %} {% endif %} {{ post.date | date_to_xmlschema }} {{ post.last_modified_at | default: post.date | date_to_xmlschema }} {{ post.id | absolute_url | 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 %} {% for category in post.categories %} {% endfor %} {% for tag in post.tags %} {% endfor %} {% if post.excerpt and post.excerpt != empty %} {{ post.excerpt | strip_html | normalize_whitespace | xml_escape }} {% endif %} {% assign post_image = post.twitter_card.image | default: post.facebook.image %} {% if post_image %} {% unless post_image contains "://" %} {% assign post_image = post_image | absolute_url | xml_escape %} {% endunless %} {% endif %} {% endunless %} {% endfor %}