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.js"></script>

And if you want to use the new responsive design::

  >>> needed_responsive = init_needed(base_url='http://localhost')
  >>> from js.bootstrap import bootstrap_responsive_css
  >>> bootstrap_responsive_css.need()
  >>> print needed_responsive.render()
  <link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/bootstrap/bootstrap.css" />
  <link rel="stylesheet" type="text/css" href="http://localhost/fanstatic/bootstrap/bootstrap.responsive.css" />
