Metadata-Version: 1.1
Name: django-leaf
Version: 1.0.0
Summary: Render and serve django templates based on URL.
Home-page: UNKNOWN
Author: Ryan Senkbeil
Author-email: ryan.senkbeil@gsdesign.com
License: UNKNOWN
Description: # django-leaf
        
        > Render django templates based on URL path.
        
        [![Build Status](https://img.shields.io/travis/gsmke/django-leaf/master.svg?style=flat)](https://travis-ci.org/gsmke/django-leaf)
        [![Latest Version](https://img.shields.io/pypi/v/django-leaf.svg?style=flat)](https://pypi.python.org/pypi/django-leaf/)
        
        ## Quick start
        
        1. Install the package from pypi
        
            ```bash
            pip install django-leaf
            ```
        
        2. Add "leaf" to your INSTALLED_APPS setting:
        
            ```python
            INSTALLED_APPS = (
                ...
                'leaf',
            )
            ```
        
        3. Add leaf urls to *the end* of your urlpatterns:
        
            ```python
            url(r'^', include('leaf.urls')),
            ```
        
        ## Usage
        
        If you want to render a template when a user goes to `/example/url/`, create one of the following files:
        
        1. example/url.html
        2. example/url/index.html
        3. pages/example/url.html
        4. pages/example/url/index.html
        
        # TODO
        
        1. Better documentation.
        2. More tests.
        3. More configuration options.
        
Platform: any
Classifier: Development Status :: 4 - Beta
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
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
