aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/main/index.py
blob: 874961bb4c9228497bf1338744962820c56b7c1f (plain) (blame)
1
2
3
4
5
6
7
from pysite.base_route import TemplateView


class IndexView(TemplateView):
    path = "/"
    name = "index"
    template = "main/index.html"