So I updated my project settings with the following scheme
PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
/settings
base.py
prod.py
dev.py
Is this the correct STATICFILES_DIRS settings for the above configuration?
STATICFILES_DIRS = [
os.path.join(PROJECT_ROOT, "site_media", "static"),
]
STATIC_URL = "/site_media/static/"
The templates render just fine using
TEMPLATE_DIRS = [
os.path.join(PROJECT_ROOT, "templates"),
]
So I'm a little turned around as to why my css files arent working
Home.html
<link rel="stylesheet" href="{{ STATIC_URL }}css/home.css" />