just return a blank page for the index

i'll keep the index.html around for when we eventually use it, though
This commit is contained in:
Brian S. Stephan 2014-04-05 10:49:23 -05:00
parent c8a72cf8a5
commit f9c7388bae
1 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
"""
dr_botzo/views.py --- various random views
"""
from django.http import HttpResponse
from django.shortcuts import render
def home(request):
"""Site index, nothing special (or at all)."""
return render(request, 'index.html', {})
def home(request):
"""Site index, nothing special (or at all, right now)."""
return HttpResponse()
# vi:tabstop=4:expandtab:autoindent