from django.shortcuts import render def home(request): """Site index, nothing special (or at all).""" return render(request, 'index.html', {}) # vi:tabstop=4:expandtab:autoindent