Metadata-Version: 1.1
Name: django-h5bp
Version: 0.3.4
Summary: A simple HTML5 Boilerplate Django app that has some predefined template Blocks, useful to be extended in any application template.
Home-page: https://github.com/arruda/django-h5bp
Author: Felipe Arruda Pontes
Author-email: contato@arruda.blog.br
License: MIT License
Description: django-h5bp
        ===========
        
        A simple HTML5 Boilerplate Django app that has some predefined template Blocks,
        useful to be extended in any application template.
        
        
        Instalation
        -----------------------------------
        
            pip install django-h5bp
        
        
        Usage
        -----------------------------------
        
        Add this app to the 'installed_apps' settings:
        
            INSTALLED_APPS = (
                ...
                'django_h5bp',
            )
        
        Extend the H5BP template in your base template, here is an example:
        
            {% extends "responsive/responsive_h5bp.html" %}
        
            {% block page-title %}My Great Project{% endblock %}
        
            {% block header %}
                <h1 class="title">Here is my page header</h1>
            {% endblock %}
        
            {% block main-container %}
                <div>
                    <p>Hello World!</p>
                </div>
            {% endblock %}
        
            {% block footer %}
                <p>Footer</p>
            {% endblock %}
        
        That should be enought to have your base.html using the Responsive HTML5 Boilerplate Django template.
        
        Static Files
        -----------------------------------
        The H5BP template comes with some JS in it, as well as the default css style, all of them are correctly configured in the template to use the {{ STATIC_URL }} tag.
        
        The only one missing is the favicon.ico, that you should set your own (else it would the default one, depending on the position you put the app in the installed app list).
        
        
        H5BP Template Blocks
        -----------------------------------
        
        Here are all the blocks that exist in the responsive_h5bp.html:
        
        ### \<head\>
        * page-title
        * meta-description
        * meta-keywords
        * meta-author
        * meta-generator
        * meta-extras
        * css-extras
        
        ### \<body\>\<header\>
        * header
        
        ### \<body\>\<div class="main"\>
        * main-container
        
        ### \<body\>
        * js-imports
        
        ### \<body\>\<script type="text/javascript"\>
        * jquery-docready
        * jquery-winload
        
        ### \<body\>\<script type="text/javascript"\>
        * js-onpage
        
        ### \<body\>
        * analytics
        
        404 Page
        -----------------------------------
        
        This app also contains the HTML5 Boilerplate default 404 page, with no template tags.
        
        
        LICENSE
        =============
        This software is distributed using MIT license, see LICENSE file for more details.
        
Platform: UNKNOWN
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
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
