~zeitgeist/zeitgeist-project-website/trunk

« back to all changes in this revision

Viewing changes to views.py

  • Committer: Jamal Fanaian
  • Date: 2009-12-03 23:19:06 UTC
  • Revision ID: jfanaian@its-4-20091203231906-ebczw0x4s2v9oxhc
Added more blogs page, and linked to announcements page in launchpad from front page

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
def static_view(request, template_name):
53
53
    return render_to_response(template_name, {})
54
54
 
55
 
 
 
55
def blogs(request):
 
56
    return render_to_response('blogs.html', {
 
57
        "blogs": _fetch_blogs(10),
 
58
    })