fixed static files serving, added test blog entry

This commit is contained in:
Otto Naderer 2017-12-10 18:44:22 +01:00
parent 427fae7864
commit 20757dc70f
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@ -125,4 +125,6 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]