I get the following error;
GET http://127.0.0.1:8000/static/bootstrap/css/bootstrap.min.css net::ERR_ABORTED 404 (Not Found) GET http://127.0.0.1:8000/static/bootstrap/css/bootstrap-grid.min.css net::ERR_ABORTED 404 (Not Found) GET http://127.0.0.1:8000/static/bootstrap/css/bootstrap-reboot.min.css net::ERR_ABORTED 404 (Not Found) . . . so on...
URL setting in settings.py is as follows;
STATIC_URL = '/static/'
STATICFILES_DIR = [
os.path.join(BASE_DIR, 'static'),
]
STATIC_ROOT = os.path.join(BASE_DIR, 'assets')
I have entered the static file urls in the template(home.html);
{%load static%}
<!DOCTYPE html>
<html >
<head>
<!-- meta data -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="{% static 'images/logo4.png' %}" type="image/x-icon">
<meta name="description" content="Website Builder Description">
<title>home.html</title>
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap-grid.min.css' %}">
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap-reboot.min.css' %}">
<link rel="stylesheet" href="{% static 'tether/tether.min.css' %}">
<link rel="stylesheet" href="{% static 'dropdown/css/style.css' %}">
<link rel="stylesheet" href="{% static 'animatecss/animate.min.css' %}">
<link rel="stylesheet" href="{% static 'theme/css/style.css' %}">
My folder structure as follows:
Can some one help me to resolve the issue?
Thank you


