NicholasStudt

Changeset 362


Ignore:
Timestamp:
07/21/10 07:38:39 (7 weeks ago)
Author:
nicholas
Message:

Adjusting feed templates for new syndication.

Location:
Python/blog/trunk/blog
Files:
6 added
4 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • Python/blog/trunk/blog/feeds.py

    r355 r362  
    1111    title = '%s feed' % _site.name 
    1212    description = '%s posts feed.' % _site.name 
     13    title_template = 'feeds/latest/title.html' 
     14    description_template = 'feeds/latest/description.html' 
    1315 
    1416    def items(self): 
     
    2426class LatestEntriesByTag(Feed): 
    2527    _site = Site.objects.get_current() 
     28    title_template = 'feeds/tags/title.html' 
     29    description_template = 'feeds/tags/description.html' 
    2630 
    2731    def get_object(self, request, tag): 
Note: See TracChangeset for help on using the changeset viewer.