blob: 805936a8b5943adea1cd2769a4d14a59fe1f967a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# coding=utf-8
from pysite.base_route import RouteView
class RulesView(RouteView):
path = "/about/rules"
name = "about.rules"
def get(self):
return self.render("main/about/rules.html")
|