9 lines
196 B
Python
9 lines
196 B
Python
"""Views for miscellaneous site stuff."""
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class IndexView(TemplateView):
|
|
"""Serve a very basic index page."""
|
|
|
|
template_name = 'index.html'
|