{ "info": { "author": "James Tauber", "author_email": "jtauber@jtauber.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python" ], "description": "Twitter Bootstrap Theme, for Pinax\n==================================\n\nA theme for Pinax 0.9 based on Twitter's open source Bootstrap framework.\n\n\nQuick Start\n-----------\n\nInclude \"pinax-theme-bootstrap\" in your requirements file and\n\"pinax_theme_bootstrap\" in your INSTALLED APPS.\n\nMake sure both template loaders and staticfiles finders includes\napp directories.\n\nSite name comes from Sites fixture.\n\nYour \"site_base.html\" should extend \"theme_base.html\" and should provide\n\"footer\" and \"nav\" blocks (the latter should just be a ul of li of a links).\n\nYour pages should have blocks \"head_title\" and \"body\" and should extend\n\"site_base.html\".\n\nThe url name \"home\" should be defined as the homepage.\n\n\nRequirements\n------------\n\nThis theme is officially supported when used in conjuction with Pinax 0.9.\nIf using the theme with Django < 1.4, you will need to install a recent\nversion of django-staticfiles as we use the `{% render %}` template tag.\n\n\nForms\n-----\n\nThis theme ships with a basic template tag for rendering forms that match\nthe markup expected by Bootstrap.\n\nTo style forms, add the following to the top of your template ::\n \n {% load bootstrap_tags %}\n\nand include your form using the following markup: ::\n \n
\n\nBootstrap includes styles for four types of forms. To change the display of\nyour form, add one of the following class attributes to your form tag:\n\n\n================== ================ ==============================================================\n Name Class Description\n================== ================ ==============================================================\nVertical (default) .form-vertical Stacked, left-aligned labels over controls\nHorizontal .form-horizontal Float left, right-aligned labels on same line as controls\nInline .form-inline Left-aligned label and inline-block controls for compact style\nSearch .form-search Extra-rounded text input for a typical search aesthetic\n================== ================ ==============================================================\n\n\nNavigation\n----------\n\nTo modify your site's navigation bar, implement the \"nav\" block in\nyour site_base.html using the following pattern: ::\n\n