diff options
Diffstat (limited to 'pysite/views/main/about/index.py')
-rw-r--r-- | pysite/views/main/about/index.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pysite/views/main/about/index.py b/pysite/views/main/about/index.py new file mode 100644 index 00000000..a3fecc31 --- /dev/null +++ b/pysite/views/main/about/index.py @@ -0,0 +1,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") |