Created
January 12, 2017 18:58
-
-
Save aaronr/6172436d141dfad20e7447603b494d03 to your computer and use it in GitHub Desktop.
This is my cool gist
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
--- | |
--- | |
<?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