I currently have a folder structure that looks like this:
https://i.sstatic.net/a4nYD.png
My goal is to import base.css into base.html so that it is applied globally:
Here is my HTML:
<!DOCTYPE html>
{% load static %}
<html>
<head>
<link rel="stylesheet" href="{% static 'base.css' %}">
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="adcfc2c2d9ded9dfccdded98839d839f">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
(...)
</html>
Here are my settings:
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR,'static')
I've tried various combinations, but nothing seems to be working. Any assistance would be greatly appreciated. Thank you :)