Skip to content

Instantly share code, notes, and snippets.

@Ramona2020
Created April 3, 2015 14:43
Show Gist options
  • Save Ramona2020/c6f830c37aec32e7c44a to your computer and use it in GitHub Desktop.
Save Ramona2020/c6f830c37aec32e7c44a to your computer and use it in GitHub Desktop.
Code for rss feed
---
layout: feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>GitHub Pages Blog</title>
<link href="http://ramona2020.github.io/blog/atom.xml" rel="self"/>
<link href="http://ramona2020.github.io/blog"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://ramona2020.github.io/blog</id>
<author>
<name>Ramona Romero</name>
<email>ramona.romero@vanderbilt.edu</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://ramona2020.github.io{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://ramona2020.github.io/{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment