Metadata-Version: 1.0
Name: django-tiniest-cms
Version: 0.9.0
Summary: django-tiniest-cms is an seriously minimalist Django CMS
Home-page: https://github.com/Gautier/django-tiniest-cms
Author: Gautier Hayoun
Author-email: ghayoun@gmail.com
License: MIT
Description: Django tiniest cms
        ==================
        
        Installation
        ------------
        
        #. The recommended way to install django-tiniest-cms package is with pip.
        
            $ pip install django-tiniest-cms
        
        #. Then add 'django-tiniest-cms' to `INSTALLED_APPS`.
        
        Usage
        -----
        
        Assuming this would be the frontpage template of a website :
        
            {% load tiniest_cms %}<html>
            <head>
                <title>{% content "website/frontpage/title" %}NO TITLE{% endcontent %}</title>
            </head>
            <body>
                {% content "website/frontpage/main_content"%}
        
                This is the website of ACME corporation
                
                {% endcontent %}
            </body>
            </html>
        
        Then in the administration you can add the content snippet matching the name
        given to the `content` tags. The content will be rendered as markdown instead
        of the default given to the `content` tags.
        
Platform: UNKNOWN
