js.bootstrap is a library that packages Twitter bootstrap for Fanstatic. It is aware of different modes (normal, minified).
This requires integration between your web framework and fanstatic, and making sure that the original resources (shipped in the resources directory in js.bootstrap) are published to some URL.
How to use?
This should be setup before rendering a page. See fanstatic for more information:
>>> from fanstatic import init_needed
>>> needed = init_needed(base_url='http://localhost')
You can import bootstrap from js.bootstrap and .need it where you want these resources to be included on a page:
>>> from js.bootstrap import bootstrap
>>> bootstrap.need()
Render the inclusion:
>>> print needed.render()
< link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/bootstrap/bootstrap.css" / >
< script type="text/javascript" src="http://localhost/fanstatic/jquery/jquery.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-alerts.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-dropdown.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-modal.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-popover.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-scrollspy.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-tabs.js" >< /script >
< script type="text/javascript" src="http://localhost/fanstatic/bootstrap/bootstrap-twipsy.js" >< /script >
Product's homepage
Requirements:
· Python
What's New in This Release: [ read full changelog ]
· Upgrade to bootstrap 2.3.1 [disko]