This is my settings.py for template:
STATIC_URL = '/static/'
MEDIA_URL = '/media/'
STATICFILES_DIRS = [os.path.join(BASE_DIR, "assets")]
STATIC_ROOT = os.path.join(BASE_DIR, "static")
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
and this is my collect static:
306 static files copied to '/home/farzaneh9978/personal-weblog-django/static'.
And this is my web settings for static files:
/static/ '/home/farzaneh9978/personal-weblog-django/static'
/media/ '/home/farzaneh9978/personal-weblog-django/media'
I reloaded, but it has no results and only shows some titles. I need your help :(