Metadata-Version: 1.1
Name: django-leaf
Version: 2.2.0
Summary: Render and serve django templates based on URL.
Home-page: https://github.com/gsmke/django-leaf
Author: Ryan Senkbeil
Author-email: techinfo@gsdesign.com
License: BSD
Description: django-leaf
        ===========
        
        django-leaf renders both "static" and database-backed templates based on the URL path.
        
        Quick Start
        -----------
        
        1. Install the package from pypi:
        
            .. code-block:: bash
        
                pip install django-leaf
        
        2. Add "leaf" and "mptt" to your INSTALLED_APPS:
        
            .. code-block:: python
        
                INSTALLED_APPS = (
                    ...
                    'leaf',
                    'mptt',
                )
        
        3. Add leaf urls to *the end* of your urlpatterns:
        
            .. code-block:: python
        
                url(r'^', include('leaf.urls')),
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
