I'm using Django 1.8. I get status 200 for both of my css files but the firefox says:
The stylesheet http://localhost:8000/css/full-width-pics.css was not loaded because its MIME type, "text/html", is not "text/css". localhost:8000
The stylesheet http://localhost:8000/css/mainstyle.css was not loaded because its MIME type, "text/html", is not "text/css". localhost:8000
For whatever reason the files are being served as text/html rather than text/css. This is my html.
<link href="css/full-width-pics.css" rel="stylesheet" type="text/css" />
<link href="css/mainstyle.css" rel="stylesheet" type="text/css" />
This is in a base.html file. I extend base.html it in my index.html file. Before I started using template inheritance and had everything in index.html it worked fine.
I'm on Ubuntu. I checked /etc/mime.types. css is listed with text/css.
This has left me really confused