Having trouble with CSS in my Django template,
My settings.py
looks like this:
BASE_DIR = os.path.abspath(os.path.dirname(__file__) + '/')
STATIC_URL = BASE_DIR + '/static/'
I have a folder called "static/css/home_css.css"
in my paths.
In my template home.html, I've added the following link tag:
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/home_css.css" media="all" />
However, the CSS is not rendering. If anyone knows why, please help.