public
Description: A 'planet' like feed aggregator using feedparser and erubis
Clone URL: git://github.com/technicalpickles/feedbarn.git
Use slightly hatomish markup.
Fri Feb 22 08:48:03 -0800 2008
commit  ac1bf1117fdf7dd4f3499aade9e2c4a342abf345
tree    292cb402fbd87abe5970e924b54ad50648c52ab7
parent  33c40f7bf20f7bb2897d5861d6cb404a71d8462b
...
3
4
5
6
7
8
9
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
12
13
...
3
4
5
 
 
 
 
 
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
0
@@ -3,10 +3,30 @@
0
     <title><%= barn.name %></title>
0
   </head>
0
   <body>
0
- <ul>
0
- <% barn.entries.each do |entry| %>
0
- <li><a href="<%= entry.url %>"><%= entry.title %></a></li>
0
- <% end %>
0
- </ul>
0
+ <div id="container">
0
+ <div id="header">
0
+ <h1><%= barn.name %></h1>
0
+ </div>
0
+ <div id="content" class="hfeed">
0
+ <% barn.entries.each do |entry| %>
0
+ <div class="hentry">
0
+ <h2 class="entry-title"><a href="<%= entry.url %>"><%= entry.title %></a></h2>
0
+ <abbr class="updated published" title="blarg"><%= entry.date_published %></abbr>
0
+ <a href="#"><%= entry.author %></a>
0
+ <div class="entry-content">
0
+ <%= CGI.unescapeHTML entry.content %>
0
+ </div>
0
+ </div>
0
+ <% end %>
0
+ </div>
0
+
0
+ <div id="navigation">
0
+
0
+ </div>
0
+ <div id="footer">
0
+
0
+ </div>
0
+ </div>
0
+
0
   </body>
0
 </html>
0
\ No newline at end of file

Comments

    No one has commented yet.