fix template and static file paths; create empty index page
This commit is contained in:
parent
2d70634ff3
commit
b94e378de7
@ -74,3 +74,11 @@ USE_TZ = True
|
||||
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(BASE_DIR, 'stackviz', 'static')
|
||||
]
|
||||
|
||||
TEMPLATE_DIRS = [
|
||||
os.path.join(BASE_DIR, 'stackviz', 'templates')
|
||||
]
|
||||
|
12
stackviz/templates/index.html
Normal file
12
stackviz/templates/index.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
|
||||
<script src="{% static 'bundle.js }"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,10 +1,15 @@
|
||||
from django.conf.urls import patterns, include, url
|
||||
from django.contrib import admin
|
||||
|
||||
from stackviz.views.index import IndexView
|
||||
|
||||
import settings
|
||||
|
||||
urlpatterns = patterns('',
|
||||
# Examples:
|
||||
# url(r'^$', 'stackviz.views.home', name='home'),
|
||||
# url(r'^blog/', include('blog.urls')),
|
||||
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
url(r'^$', IndexView.as_view()),
|
||||
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user