A Collection of Bootstrap static files.
Project description
Bootstrap and optional Font Awesome static files ready for the picking.
Also ships the latest jQuery compatible with Bootstrap, for optional inclusion.
Install
pip install django-bootstrap-static
Configuration
To pickup Bootstrap static files, simply include 'bootstrap', and optionally 'fontawesome', in your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
'bootstrap',
'fontawesome',
]
Then you can include CSS and JavaScript as usual static resources, e.g. using {% static '...' %} in your base template as follows:
{% load static %}
<head>
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
<link rel="stylesheet" href="{% static 'fontawesome/css/font-awesome.min.css' %}">
</head>
<body>
...
<script src="{% static 'bootstrap/js/jquery.min.js' %}"></script>
<script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
</body>
More details on integration may be available from each of the two projects:
Contribution
Occasionally, I forget to update this package with new bootstrap updates. Please feel free to submit a PR.
Sources and Procedures
- Bootstrap: (all files from dist package)
Bootstrap website / Getting started -> drop into bootstrap/static/bootstrap/
- jQuery: (compressed, uncompressed, map)
jQuery website / Download -> rename and mix into bootstrap/static/bootstrap/js/
Pick the latest version denoted as a dependency in bower.json (see Plugin dependencies).
- Font Awesome: (css/, fonts/ only)
Font Awesome website (“No thanks, just download”) -> drop into fontawesome/static/fontawesome/
Releases
To keep with the Bootstrap release schedule we will keep version numbers of this app in sync with the bootstrap Major.Minor.Revision changes (semver). The additional version number will be added at the end to denote a new change within this package itself.
django-bootstrap-static==3.3.1.1 == Bootstrap 3.3.1 with an additional package change.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-bootstrap-static-3.3.7.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4b15f3aeb184ddfad2e0fbb78e42f09ce6a07f00e7c65437998945296cdde43 |
|
MD5 | bc9b5db7f2654947b540d40928727f49 |
|
BLAKE2b-256 | 885c749213f156082bc8ce78c8ae8f03595c6515c657ff9c9f42929a5d2ee8c4 |
Hashes for django_bootstrap_static-3.3.7.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14f57db31a86719bfa658eeec8ceaf70bfa8b00716184abfdb7d7de9e109db00 |
|
MD5 | b060537ecc4ade44e787144b9ee5cc93 |
|
BLAKE2b-256 | cfdf04c4a54e5ed3a5378105a28e4f55425a470e31ce9dc74794d8999915e03f |