I'm venturing into the website creation world and have chosen Django as my platform. I've hit a roadblock in regards to integrating css/js from Bootstrap.
Could someone explain the difference between installing it versus linking it using BootstrapCDN
?
If the linked content becomes inaccessible, how would it impact the functioning of the website?
Wouldn't it be simpler to just include those files in the statics
directory?
Here's what I currently have in the base.html file of my application:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="{% static 'flatly.css' %}">
<link rel="stylesheet" href="{% static 'main.css' %}">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>