Metadata-Version: 2.1
Name: djangocms-themata
Version: 0.1.2
Summary: A set of themes for Django CMS projects.
Home-page: https://github.com/rbturnbull/djangocms-themata
License: Apache-2.0
Author: Robert Turnbull
Author-email: robert.turnbull@unimelb.edu.au
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django CMS
Classifier: License :: OSI Approved :: Apache Software License
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: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Django (>=3.2)
Requires-Dist: django-cms (>=3.9.0)
Requires-Dist: djangocms-bootstrap (>=1.1.2)
Requires-Dist: djangocms-page-meta (>=1.0.1)
Project-URL: Repository, https://github.com/rbturnbull/djangocms-themata
Description-Content-Type: text/x-rst

==================
djangocms-themata
==================

A set of Bootstrap themes for Django CMS projects.

Installation
============

Install with pip from PyPI:

.. code-block:: bash

    pip install djangocms-themata

Or install directory from Github:

.. code-block:: bash

    pip install git+https://github.com/rbturnbull/djangocms-themata


Usage
========

Start with a Django project set up with `Django CMS <https://docs.django-cms.org/en/latest/introduction/01-install.html>`_.

Add ``djangocms_themata`` to the list of plugins:

.. code-block:: python

    INSTALLED_APPS += [
        "cms_bootstrap",    
        "djangocms_themata",
    ]

Migrate the database.

.. code-block:: bash

    python manage.py migrate

Get your templates to extend ``base.html``:

.. code-block:: jinja2

    {% extends "base.html" %}

Then navigate to the admin section of the website and go to the djangocms-themata section. Activate the theme that you like there.

Credits
========

App designed by Robert Turnbull (Melbourne Data Analytics Platform)

All bootstrap themes are taken from the bootswatch CDN.


