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