diff bitsyblog/templates/blog.html @ 35:7e7fbdc64cc1

enable atom support, this brings us to 2.0
author k0s <k0scist@gmail.com>
date Sun, 01 Nov 2009 13:30:18 -0500
parents 89f5158ef191
children
line wrap: on
line diff
--- a/bitsyblog/templates/blog.html	Sun Nov 01 01:51:14 2009 -0400
+++ b/bitsyblog/templates/blog.html	Sun Nov 01 13:30:18 2009 -0500
@@ -8,6 +8,7 @@
   <head>
     <title>${user} - ${site_name}</title>
 
+    <!-- stylesheets -->
     <py:for each="index, (href, sheet) in enumerate(stylesheets)">
       <link href="${href}"
             type="text/css" 
@@ -15,8 +16,9 @@
             title="${sheet}"/>
     </py:for>
 
-    <link rel="alternate" type="application/rss+xml" title="blog - ${user}" href="${user_url(request, user, 'rss')}"/>
-
+    <!-- feeds -->
+    <link rel="alternate" type="application/rss+xml" title="blog - ${user} - RSS" href="${user_url(request, user, 'rss')}"/>
+    <link rel="alternate" type="application/atom+xml" title="blog - ${user} - Atom" href="${user_url(request, user, 'atom')}"/>
   </head>
 
   <body>