[Answer]-Django loading css from template

1👍

Okay found the answer. I was supposed to do

<link rel="stylesheet" type="text/css" href="{% static "css/style.css" %}" />

instead of

<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/style.css" />

Leave a comment