My webpage is rendering HTML correctly, but the CSS styles are not being applied. I am currently in development mode and running the django dev runserver.
STATICFILES_DIRS = ("C:/Users/user/site/sitemain/static",)
STATIC_ROOT= '' STATIC_URL = '/static/'
MEDIA_ROOT= '' MEDIA_URL=''
The CSS link in my HTML file is:
<link rel="stylesheet" type="text/css href="{{ STATIC_URL}}/base.css" />
. The template file is base.html. I'm stumped as to why my CSS is not showing up!