summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-11-04 22:10:49 +0100
committerGravatar Tom Willemsen2011-11-04 22:10:49 +0100
commit3ec79710ca046b2c172eb77679eb5e2983460a1a (patch)
treecc028ab2f6ac96d4ec8f50019c2b4609fb4e948b /urls.py
parente533b3b82e254e2c22ed40a570b5e8b31a1f126b (diff)
downloaddotfiles-3ec79710ca046b2c172eb77679eb5e2983460a1a.tar.gz
dotfiles-3ec79710ca046b2c172eb77679eb5e2983460a1a.zip
Render html pages in templates/html_pages
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index a5e253d..3b24bf7 100644
--- a/urls.py
+++ b/urls.py
@@ -15,4 +15,8 @@ urlpatterns = patterns('',
if DEBUG:
urlpatterns += patterns('',
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '%s/static' % DEPLOY_PATH})
+ )
+
+urlpatterns += patterns('',
+ (r'^', include("pages.urls"))
)