Download bootstrap and drop the CSS in ./example/static/css/bootstrap.css
Then the Javascript in ./example/static/js/bootstrap.bundle.js
{% load static %} | |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title> | |
{% block title %} | |
{% endblock %} | |
</title> | |
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}"> | |
</head> | |
<body> | |
<div class="container"> | |
{% block content %} | |
{% endblock %} | |
</div> | |
<script src="{% static 'js/bootstrap.bundle.js' %}"></script> | |
</body> | |
</html> |