xml.rss("version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do
  xml.channel do
    xml.title(@page_title)
    xml.link("http://feeds.feedburner.com/stoopblog")
    xml.description "Stoop Storytelling Blog"
    xml.language "en-us"
    xml.ttl "60"

    for item in @news_items
      xml.item do
        xml.title(item.title)
        xml.description(san_textilize(item.body))
        xml.pubDate(item.updated_at.to_s(:rfc822))
        xml.guid(item.id)
        xml.link(news_item_url(item))
        xml.tag!("dc:creator", 'Stoop Storytelling Series')
      end
    end
  end
end