--- layout: nil --- {{ site.name | xml_escape }} {% if site.description %}{{ site.description | xml_escape }}{% endif %} {{ site.feed_update_period | default: "daily" | xml_escape }} {{ site.feed_update_frequency | default: 1 | xml_escape }} {{ site.url }} {% for post in site.posts limit:1 %}{{ post.date | date_to_rfc822 }}{% endfor %} {% assign feed_items = site.feed_items | default: 10 %} {% for post in site.posts limit:feed_items %} {{ post.title | xml_escape }} {% if post.team_member %} {% assign author_id = post.team_member | prepend: "/team_members/" | append: "/" %} {% assign author = site.team_members | where: "url", author_id | first %} {{ author.name | xml_escape }} {% endif %} {% if post.description %} {{ post.description| xml_escape }} {% else %} {{ post.content | xml_escape }} {% endif %} {{ post.date | date_to_rfc822 }} {{ site.url }}{{ post.url }} {{ site.url }}{{ post.url }} {% endfor %}