{ "info": { "author": "Fanstatic Developers", "author_email": "fanstatic@googlegroups.com", "bugtrack_url": null, "classifiers": [], "description": "js.html5boilerplate\n*******************\n\nIntroduction\n============\n\nThis library packages `html5boilerplate`_ for `fanstatic`_.\n\n.. _`fanstatic`: http://fanstatic.org\n.. _`html5boilerplate`: http://www.html5boilerplate.com\n\nThis requires integration between your web framework and ``fanstatic``,\nand making sure that the original resources (shipped in the ``resources``\ndirectory in ``js.html5boilerplate``) are published to some URL.\n\n\nHow to use?\n===========\n\n >>> from fanstatic import NeededResources\n >>> needed = NeededResources(bottom=True)\n\nYou can import the various files from ``js.html5boilerplate`` and ``need()``\nthem in your page::\n\n >>> from js.html5boilerplate import style, pngfix\n >>> needed.need(style)\n >>> needed.need(pngfix)\n\n >>> html = '''\n ... \n ... \n ...
\n ... \n ... \n ... my content\n ... \n ... '''\n >>> print needed.render_topbottom_into_html(html)\n