Metadata-Version: 2.4
Name: micro_sidebar
Version: 1.0.0
Summary: A reusable Django sidebar for Web Apps
Home-page: https://github.com/debeski/micro-sidebar
Author: DeBeski
Author-email: DeBeski <debeski1@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/debeski/micro-sidebar
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: Django>=5.1
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# Micro Sidebar

A reusable Django sidebar app.

## Installation

1.  Add `sidebar` to your `INSTALLED_APPS` setting.
2.  Include the URLconf in your project urls.py:
    ```python
    path('sidebar/', include('sidebar.urls')),
    ```
3.  Override the content by creating `templates/sidebar/content.html` in your project. See `sidebar/templates/sidebar/example_content.html` for a starting point.
