add main site base

This commit is contained in:
Laura Klünder 2016-12-13 20:17:56 +01:00
parent 237b89dcc8
commit ea0eb44fcb
7 changed files with 5668 additions and 5619 deletions

6
src/c3nav/site/urls.py Normal file
View file

@ -0,0 +1,6 @@
from django.conf.urls import url
from django.views.generic import TemplateView
urlpatterns = [
url(r'^$', TemplateView.as_view(template_name='site/index.html'), name='site.index')
]