METADATA 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Metadata-Version: 2.0
  2. Name: Flask-Bootstrap
  3. Version: 3.3.7.0
  4. Summary: An extension that includes Bootstrap in your project, without any boilerplate code.
  5. Home-page: http://github.com/mbr/flask-bootstrap
  6. Author: Marc Brinkmann
  7. Author-email: git@marcbrinkmann.de
  8. License: BSD
  9. Platform: any
  10. Classifier: Environment :: Web Environment
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: BSD License
  13. Classifier: Operating System :: OS Independent
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
  18. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  19. Requires-Dist: Flask (>=0.8)
  20. Requires-Dist: dominate
  21. Requires-Dist: visitor
  22. ===============
  23. Flask-Bootstrap
  24. ===============
  25. .. image:: https://travis-ci.org/mbr/flask-bootstrap.png?branch=master
  26. :target: https://travis-ci.org/mbr/flask-bootstrap
  27. Flask-Bootstrap packages `Bootstrap
  28. <http://getbootstrap.com>`_ into an extension that mostly consists
  29. of a blueprint named 'bootstrap'. It can also create links to serve Bootstrap
  30. from a CDN and works with no boilerplate code in your application.
  31. Usage
  32. -----
  33. Here is an example::
  34. from flask_bootstrap import Bootstrap
  35. [...]
  36. Bootstrap(app)
  37. This makes some new templates available, containing blank pages that include all
  38. bootstrap resources, and have predefined blocks where you can put your content.
  39. As of version 3, Flask-Bootstrap has a `proper documentation
  40. <http://pythonhosted.org /Flask-Bootstrap>`_, which you can check for more
  41. details.