aboutsummaryrefslogtreecommitdiffstats
path: root/pysite
diff options
context:
space:
mode:
authorGravatar Jeremiah Boby <[email protected]>2018-05-22 20:16:12 +0100
committerGravatar Jeremiah Boby <[email protected]>2018-05-22 20:16:12 +0100
commit96878097c00db06e61662fa1d34310ea552f15f1 (patch)
treec132bd5c67e508781b6162d0160b305edb4c0bfd /pysite
parentAdded our new partner - Functional Programming - to the partners page! (diff)
parentRevision of the rules, and a channels page (diff)
Merge branch 'master' of https://github.com/discord-python/site
Merge master
Diffstat (limited to 'pysite')
-rw-r--r--pysite/views/main/about/channels.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pysite/views/main/about/channels.py b/pysite/views/main/about/channels.py
new file mode 100644
index 00000000..2e5496f9
--- /dev/null
+++ b/pysite/views/main/about/channels.py
@@ -0,0 +1,7 @@
+from pysite.base_route import TemplateView
+
+
+class ChannelsView(TemplateView):
+ path = "/about/channels"
+ name = "about.channels"
+ template = "main/about/channels.html"