Metadata-Version: 2.1
Name: django-js-lib-bootstrap5
Version: 5.3.2.1
Summary: Bootstrap5 Repackaged for Django
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License

# Bootstrap5 Repackaged for Django

[Bootstrap5](https://getbootstrap.com/docs/5.2/) packaged in a Django reusable app.

This package includes only the original JS and CSS files.


## Installation

    pip install django-js-lib-bootstrap5

## Usage

1. Add `"js_lib_bootstrap5"` to your `INSTALLED_APPS` setting like this::

       INSTALLED_APPS = [
           ...
           "js_lib_bootstrap5",
           ...
       ]

2. In your template use:
   
       {% load static %}
   
   ...
   
       <link rel="stylesheet" href="{% static "js-lib-bootstrap5/css/bootstrap5.css" %}">

   ...
   
       <script src="{% static "js-lib-bootstrap5/js/bootstrap5.js" %}"></script>

