project/urls.py
changeset 12 39f05885c9e7
parent 1 fda1c66b25f9
child 14 290f37228707
--- a/project/urls.py	Thu Nov 05 13:54:57 2009 +0530
+++ b/project/urls.py	Thu Nov 05 14:19:47 2009 +0530
@@ -18,7 +18,9 @@
 # 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),