diff --git a/symposion/about/urls.py b/symposion/about/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..3b5c17ea5d74f6e8c8bc7dd44fb3fa0772f48da8 --- /dev/null +++ b/symposion/about/urls.py @@ -0,0 +1,11 @@ +from django.conf.urls.defaults import * +from django.views.generic.simple import direct_to_template + + +urlpatterns = patterns("", + url(r"^$", direct_to_template, {"template": "about/about.html"}, name="about"), + url(r"^terms/$", direct_to_template, {"template": "about/terms.html"}, name="terms"), + url(r"^privacy/$", direct_to_template, {"template": "about/privacy.html"}, name="privacy"), + url(r"^dmca/$", direct_to_template, {"template": "about/dmca.html"}, name="dmca"), + url(r"^what_next/$", direct_to_template, {"template": "about/what_next.html"}, name="what_next"), +)