Metadata-Version: 1.1
Name: django-clever-pages
Version: 0.2.8
Summary: App for create pages
Home-page: https://github.com/artofhuman/django-clever-pages
Author: Pupkov Semen
Author-email: semen.pupkov@gmail.com
License: UNKNOWN
Description: # Django Clever Pages
        
        [![PyPI version](https://badge.fury.io/py/django-clever-pages.png)](http://badge.fury.io/py/django-clever-pages)
        [![Travis Build](https://travis-ci.org/artofhuman/django-clever-pages.png)](https://travis-ci.org/artofhuman/django-clever-pages)
        [![Coverage Status](https://coveralls.io/repos/artofhuman/django-clever-pages/badge.png)](https://coveralls.io/r/artofhuman/django-clever-pages)
        
        Simple application that allows you to organize pages in a tree
        
        * Organize pages in tree structure
        * Includes CKEditor
        * Auto build path by page slug
        * Generate page url, include all parents
        * Drag-n-dtop interface in admin
        * Include Search indices for haystack (need haystack >= 2.x). Sphinx in plans
        * Include meta tags via django-meta
        
        ## Instalation
        
        ## From Pypi
        
            pip install django-clever-pages 
        
        ## From github
        
            pip install git+git://github.com/artofhuman/django-clever-pages
        
        Add this line to your settings.py
        
        ~~~~ Python
            INSTALLED_APPS = (
                "page",
                "meta",
            )
        ~~~~
        
        Add it to end urls.py
        ~~~~ Python
            urlpatterns = patterns('',
                ('', include('page.urls'))
            )
        ~~~~
        You can define more templates in settings.py
        ~~~~ Python
            PAGE_TEMPLATES = (
                ('contacts', u'Contacts'),
            )
        ~~~~
        
        Meta tags in base.html
        ~~~~ Django
        {% load meta %}
        <head>
            <title>{{ meta.title }}</title>
            {% if meta.description %}{% meta 'description' meta.description %}{% endif %}
            {% if meta.keywords %}{% meta_list 'keywords' meta.keywords %}{% endif %}
        </head>
        ~~~~
        
        # TODO
        - Add locales
        - Add section about haystack
        - Add sphinx integration
        - Add Etag cache
        
        P.S. Sorry for my bad english :)
        
        
        [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/artofhuman/django-clever-pages/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python 2.7
