We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956f3f8 commit 46cc6d4Copy full SHA for 46cc6d4
core/settings.py
@@ -67,7 +67,7 @@
67
68
ROOT_URLCONF = "core.urls"
69
70
-HOME_TEMPLATES = os.path.join(BASE_DIR, 'home', 'templates')
+HOME_TEMPLATES = os.path.join(BASE_DIR, 'templates')
71
72
TEMPLATES = [
73
{
@@ -154,6 +154,10 @@
154
STATIC_URL = '/static/'
155
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
156
157
+STATICFILES_DIRS = (
158
+ os.path.join(BASE_DIR, 'static'),
159
+)
160
+
161
#if not DEBUG:
162
# STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
163
0 commit comments