A Collection of Bootstrap static files.
Project description
Bootstrap and optional Font Awesome static files ready for the picking.
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/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.
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.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d019b059844ba6321524f153b2b651a27a2940a9492e873a1ce5e224f35e69ab |
|
MD5 | 41ae8b7e55af4f560a6d29873f61023a |
|
BLAKE2b-256 | e4cb35e7e63e90891ba2ec1725872fd571c123c8b2cf4c3a1edcc9b8de90cabc |
Hashes for django_bootstrap_static-3.3.7-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e690025926750dceb0ef6761447765d1e70b125d373eac9550a66e31520e7ed7 |
|
MD5 | 6e37b1986ca489bd49b62b9d26e376dd |
|
BLAKE2b-256 | 5977c718827ac715d9a1a9fa4fc08734adbb895c29edb80140f43215f5bf2756 |