diff options
Diffstat (limited to 'project')
-rw-r--r-- | project/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/urls.py b/project/urls.py index 328e976..e0127dd 100644 --- a/project/urls.py +++ b/project/urls.py @@ -18,7 +18,7 @@ admin.autodiscover() # Blog & Admin urlpatterns = patterns( '', - url(r'', + url(r'^$', direct_to_template, {"template": "home.html"}, name='home'), (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), |