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


class IndexView(RouteView):
    path = "/info/"
    name = "info"

    def get(self):
        return self.render("main/info/index.html")