I'm new to the Django framework and am having a little bit of trouble following the documentation for including CSS files.
I have set up a media root in settings.py MEDIA_ROOT = '/home/daniel/django/site1/media/'
MEDIA_URL = '/static/'
And within that I have my css folder and file
/home/daniel/django/site1/media/css/style.css
Now in my html files how do I then reference the CSS file?
As I am in local development, I have done what the Django Docs have send and kept MEDIA_URL as '/static/'.
To then reference the files, do I have done this, but to no avail.
Could someone please point me in the right direction.
Thanks,
Dan