bgneal@19: """
bgneal@19: This file contains views that don't belong to any specific application.
bgneal@19: In particular, the home page view.
bgneal@19: """
bgneal@19: from django.shortcuts import render_to_response
bgneal@19: from django.template import RequestContext
bgneal@19: 
bgneal@19: 
bgneal@19: def home(request):
bgneal@19:     """
bgneal@19:     The home page view of the site.
bgneal@19:     """
bgneal@19:     return render_to_response('home.html', {
bgneal@19:         }, 
bgneal@19:         context_instance = RequestContext(request))