]> git.0d.be Git - chloro.git/blobdiff - chloro/phyll/views.py
include direct links to latest posts on homepage
[chloro.git] / chloro / phyll / views.py
index 6f0f0f701fed8dca4047bc50523e1ba902962479..84b40e7fd0071ba633ceb553ffd05dfc20cafc3f 100644 (file)
@@ -67,7 +67,7 @@ class HomeView(TemplateView):
 
     def get_context_data(self, **kwargs):
         context = super(HomeView, self).get_context_data(**kwargs)
-        context['latest'] = Note.objects.filter(published=True).latest('creation_timestamp')
+        context['posts'] = Note.objects.filter(published=True).order_by('-creation_timestamp')[:5]
         return context
 
 
@@ -123,7 +123,6 @@ class AtomFeed(Feed):
         return item.text
 
     def item_guid(self, item):
-        legacy_id = None
         for tag in item.tags.all():
             if tag.name.startswith('old-post-id-'):
                 return 'http://www.0d.be/posts/%s' % tag.name.split('-')[-1]