An open API service indexing awesome lists of open source software.

https://github.com/planet-templates/planet-feeds

feeds - planet template pack - rss 2.0, atom, opml, and friends
https://github.com/planet-templates/planet-feeds

Last synced: 2 months ago
JSON representation

feeds - planet template pack - rss 2.0, atom, opml, and friends

Awesome Lists containing this project

README

          

> NOTE: Work-in-progess. All feeds templates from the "classic" planet templates style need to get converted to embedded ruby (ERB)-style.
>
> See [rss.xml.erb](https://github.com/gravitystorm/blogs.osm.org/blob/master/theme/rss.xml.erb)
> or [opml.xml.erb](https://github.com/gravitystorm/blogs.osm.org/blob/master/theme/opml.xml.erb) at the Open Street Map Blogs / Planet as working examples.

## Planet Planet <=> Pluto - Template Cheatsheet

| <%= site.title %> or <%= site.name %>
| <%= Pluto.generator %>

| <% site.feeds.each do |feed| %>
| <%= feed.url %> or <%= feed.link %>
| <%= feed.title %> or <%= feed.name %>
| <%= feed.title2 %>
| <%= feed.feed_url %> or <%= feed.feed %>
| <% end %>

| <% items = site.items.latest.limit(24)
| ItemCursor.new( items ).each do |item,new_date,new_feed| %>
|
| <% if new_date %>
| <%= item.published %>
| <% end %>
|
| <% if new_feed %>
| <%= item.feed.url %> or <%= item.feed.link %>
| <%= item.feed.title %> or <%= item.feed.name %>
| <%= item.feed.title2 %>
| <% end %>
|
| <% if item.title %>
| <%= item.title %>
| <% end %>
|
| <% item.content %>
| <% item.url %> or <% item.link %>
| <% item.published %>
|
|
| to be done
|
| <% end %>

| <%= site.fetched %> # site (planet) last updated

# `feeds` - Pluto Template Pack - RSS 2.0, Atom, OPML, and Friends

## What's Pluto?

Pluto is a feed reader that lets you build web pages from published
web feeds. More [Pluto Project Site »](http://feedreader.github.io)

## Questions? Comments?

Send them along to the [wwwmake Forum/Mailing List](http://groups.google.com/group/wwwmake).
Thanks!