Metadata-Version: 2.1
Name: django-sitewide
Version: 0.1.7
Summary: A Django app for creating and maintaining consistent looks across a django website.
Home-page: https://gitlab.com/twohot/django-sitewide
Author: Onyeibo Oku
Author-email: onyeibo@schemefusion.com
License: GPLv3
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
License-File: LICENSE
Requires-Dist: Django>=4.2

========
sitewide
========

Sitewide is a Django app for creating and maintaining a consistent look across a django websie

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "sitewide" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "sitewide",
    ]

2. Include the sitewide URLconf in your project urls.py like this::

    path("", include("sitewide.urls")),

3. Run ``python manage.py migrate`` to create the model for sitewide settings.

4. To use sitewide, import it into the relevant views.py module and assign it to a variable within a view. Make the variable available to the template of choice via view-render contexts
