Is there a way I can use the {% load staticfiles %} to load CSS files in django?
Variations of this don't work and this is obviously wrong:
<css src="{% static "/css/bootstrap/bootstrap.min.css" %}" rel="stylesheet">
Whats the proper way to load css files using this django tag?
EDIT
Here was my actual solution:
<link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap/bootstrap.min.css' %}" />