Skip to content

Commit

Permalink
Adding atom feed
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Sep 25, 2009
1 parent 3315a98 commit 413f448
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions _layouts/default.html
Expand Up @@ -3,6 +3,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="shortcut icon" href="http://gemcutter.org/favicon.ico" type="image/x-icon">
<link href="/atom.xml" rel="alternate" title="RSS" type="application/rss+xml" />
<link href="/stylesheets/reset.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/stylesheets/960.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/stylesheets/screen.css" media="screen" rel="stylesheet" type="text/css" />
Expand Down
2 changes: 1 addition & 1 deletion _posts/2009-09-25-kinetic-energy.textile
Expand Up @@ -12,7 +12,7 @@ As you can tell, the redesign is live! Thanks to "Thoughtbot":http://thoughtbot.

The next big piece of news is that this site will be moving to "http://rubygems.org":http://rubygems.org soon. (The current site will stay live at "http://docs.rubygems.org":http://docs.rubygems.org). We're currently working with the RubyGems team on this, and it will require a little bit of redirecting and rebranding on our part. Stay tuned here for updates!

We're also going to use this space to feature gems that are new (and of course, some that are old) that are hosted on the site. This will be a column in the style of "GitHub Rebase":http://rebase.github.com, so if you've got ridiculous Ruby images or great gems on gemcutter be sure to let us know.
We're also going to use this space to feature gems that are new (and of course, some that are old) that are hosted on the site. This will be a column in the style of "GitHub Rebase":http://rebase.github.com, so if you've got ridiculous Ruby images or great gems on gemcutter, let me know at nick@gemcutter.org.

h5. Features

Expand Down
28 changes: 28 additions & 0 deletions atom.xml
@@ -0,0 +1,28 @@
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>The Gemcutter Update</title>
<link href="http://update.gemcutter.org/atom.xml" rel="self"/>
<link href="http://update.gemcutter.org/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://update.gemcutter.org/</id>
<author>
<name>Nick Quaranto</name>
<email>nick@gemcutter.org</email>
</author>

{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://update.gemcutter.org{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://update.gemcutter.org{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}

</feed>

0 comments on commit 413f448

Please sign in to comment.