aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/views/staff/index.py
blob: 683b3a775eb850a513c6fc2cca6eb15985cb3314 (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.index"

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