aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/staff/index.py
blob: 19e8933369bee9e490e9189e98a272f3824d68ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# coding=utf-8
from pysite.base_route import RouteView


class StaffView(RouteView):
    path = "/"
    name = "staff"

    def get(self):
        return self.render("staff/staff.html")