Beginnings of the integrated front-end website.

This commit is contained in:
Greg Taylor 2007-06-05 20:06:21 +00:00
parent bb6905c1ca
commit 1e13d94b20
12 changed files with 1258 additions and 2 deletions

5
apps/website/urls.py Normal file
View file

@ -0,0 +1,5 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('apps.website.views',
(r'^$', 'page_index'),
)