blob: a3fecc31773cc8a8d54e179fc68e036ce29193b0 (
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 = "/about/"
name = "about.index"
def get(self):
return self.render("main/about/index.html")
|