Skip to content

Instantly share code, notes, and snippets.

@aaronr
Created January 12, 2017 18:58
Show Gist options
  • Save aaronr/6172436d141dfad20e7447603b494d03 to your computer and use it in GitHub Desktop.
Save aaronr/6172436d141dfad20e7447603b494d03 to your computer and use it in GitHub Desktop.
This is my cool gist
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>{{ site.name }}</title>
<description>{{ site.description }}</description>
<link>{{ site.url }}</link>
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title }}</title>
<description>{{ post.content | xml_escape }}</description>
<published>{{ post.date }}</published>
<link>{{ site.url }}{{ post.url }}</link>
</item>
{% endfor %}
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment