Created
December 5, 2016 18:05
-
-
Save mattr-/b6b57bfc6acdf4e50aa5f30ec19c2027 to your computer and use it in GitHub Desktop.
jekyll powered atom feed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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