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