diff options
author | 2018-03-14 12:07:12 +0000 | |
---|---|---|
committer | 2018-03-14 12:07:12 +0000 | |
commit | 1aaa8e92237de6b477f3e132d89f54b8496e17eb (patch) | |
tree | 2135165c72fa2afaa6e0ae4a60b0479cb1ae89e0 /pysite | |
parent | Dynamic OpenGraph metadata in page templates (diff) |
Early bersion of the code jams page
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/main/info/jams.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pysite/views/main/info/jams.py b/pysite/views/main/info/jams.py new file mode 100644 index 00000000..2d71b433 --- /dev/null +++ b/pysite/views/main/info/jams.py @@ -0,0 +1,10 @@ +# coding=utf-8 +from pysite.base_route import RouteView + + +class IndexView(RouteView): + path = "/info/jams" + name = "info/jams" + + def get(self): + return self.render("main/info/jams.html") |