Skip to content

Instantly share code, notes, and snippets.

@mattr-
Created December 5, 2016 18:05
Show Gist options
  • Save mattr-/b6b57bfc6acdf4e50aa5f30ec19c2027 to your computer and use it in GitHub Desktop.
Save mattr-/b6b57bfc6acdf4e50aa5f30ec19c2027 to your computer and use it in GitHub Desktop.
jekyll powered atom feed
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ site.baseurl }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment