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


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