Metadata-Version: 2.1
Name: django-simple-cms
Version: 0.1.2
Summary: A simple  CMS for django
Home-page: https://github.com/vinaypai/django-simple-cms/
Author: Vinay Pai
Author-email: vinay@vinaypai.com
License: UNKNOWN
Description: # django-simple-cms
        A super simple CMS for Django that lets you create pages and blog posts. This app lets you create and manage navigation menus, simple pages like your site's About Us page, and create blog posts. You can edit the raw HTML or optionally use [TinyMCE Lite](https://pypi.org/project/django-tinymce4-lite/) for WYSIWIG editing.
        
        This app is only intended for simple uses by trusted users, and allows you to insert content directly into pages including script tags.
        
        ## Requirements
        * `django` >= 1.11
        * `django-mptt` >= 0.9
        * `pillow` >= 2.1
        * `django-tinymce4-lite` >= 1.6 (optional, for WYSIWIG editing)
        
        ## Quick Start
        Install `django-simple-cms`
        ```
        pip install django-simple-cms
        ```
        Add `cms` to `INSTALLED_APPS` in your project's `settings.py`.
        
        ```python
        INSTALLED_APPS = (
            ...
             'cms',
            ...
        )
        ```
        
        Run migrations in your project to create the models for the CMS app.
        
        ```
        ./manage.py migrate cms
        ```
        
        If you want WYSIWIG editing, also follow the [installation guide](https://pypi.org/project/django-tinymce4-lite/#quick-start) for `django-tinymce4-lite`.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System
Description-Content-Type: text/markdown
