DESCRIPTION.rst 867 B

12345678910111213141516171819202122232425262728293031
  1. ===============
  2. Flask-Bootstrap
  3. ===============
  4. .. image:: https://travis-ci.org/mbr/flask-bootstrap.png?branch=master
  5. :target: https://travis-ci.org/mbr/flask-bootstrap
  6. Flask-Bootstrap packages `Bootstrap
  7. <http://getbootstrap.com>`_ into an extension that mostly consists
  8. of a blueprint named 'bootstrap'. It can also create links to serve Bootstrap
  9. from a CDN and works with no boilerplate code in your application.
  10. Usage
  11. -----
  12. Here is an example::
  13. from flask_bootstrap import Bootstrap
  14. [...]
  15. Bootstrap(app)
  16. This makes some new templates available, containing blank pages that include all
  17. bootstrap resources, and have predefined blocks where you can put your content.
  18. As of version 3, Flask-Bootstrap has a `proper documentation
  19. <http://pythonhosted.org /Flask-Bootstrap>`_, which you can check for more
  20. details.