{ "info": { "author": "Felipe Arruda Pontes", "author_email": "contato@arruda.blog.br", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "django-h5bp\n===========\n\nA simple HTML5 Boilerplate Django app that has some predefined template Blocks,\nuseful to be extended in any application template.\n\n\nInstalation\n-----------------------------------\n\n pip install django-h5bp\n\n\nUsage\n-----------------------------------\n\nAdd this app to the 'installed_apps' settings:\n\n INSTALLED_APPS = (\n ...\n 'django_h5bp',\n )\n\nExtend the H5BP template in your base template, here is an example:\n\n {% extends \"responsive/responsive_h5bp.html\" %}\n\n {% block page-title %}My Great Project{% endblock %}\n\n {% block header %}\n
Hello World!
\nFooter
\n {% endblock %}\n\nThat should be enought to have your base.html using the Responsive HTML5 Boilerplate Django template.\n\nStatic Files\n-----------------------------------\nThe 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.\n\nThe 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).\n\n\nH5BP Template Blocks\n-----------------------------------\n\nHere are all the blocks that exist in the responsive_h5bp.html:\n\n### \\\n* page-title\n* meta-description\n* meta-keywords\n* meta-author\n* meta-generator\n* meta-extras\n* css-extras\n\n### \\\\