{ "info": { "author": "Ryan Roemer", "author_email": "ryan@loose-bits.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Internet", "Topic :: Software Development :: Documentation" ], "description": "========================\n Sphinx Bootstrap Theme\n========================\n\nThis Sphinx_ theme_ integrates the Bootstrap_ CSS / JavaScript\nframework with various layout options, hierarchical menu navigation,\nand mobile-friendly responsive design. It is configurable, extensible,\nand can use any number of different Bootswatch_ CSS themes.\n\n.. _Bootstrap: http://getbootstrap.com/\n.. _Sphinx: http://sphinx-doc.org/\n.. _theme: http://sphinx-doc.org/theming.html\n.. _PyPI: http://pypi.python.org/pypi/sphinx-bootstrap-theme/\n.. _GitHub repository: https://github.com/ryan-roemer/sphinx-bootstrap-theme\n\n\nIntroduction and Demos\n======================\nThe theme is introduced and discussed in the following posts:\n\n* 12/09/2011 - `Twitter Bootstrap Theme for Sphinx `_\n* 11/19/2012 - `Sphinx Bootstrap Theme Updates - Mobile, Dropdowns, and More `_\n* 2/12/2013 - `Sphinx Bootstrap Theme 0.1.6 - Bootstrap and Other Updates `_\n* 4/10/2013 - `Sphinx Bootstrap Theme 0.2.0 - Now with Bootswatch! `_\n* 9/8/2013 - `Sphinx Bootstrap Theme 0.3.0 - Bootstrap v3 and more! `_\n\nExamples of the theme in use for some public projects:\n\n* `Sphinx Bootstrap Theme`_: This project, with the theme option\n ``'bootswatch_theme': \"sandstone\"`` to use the \"Sandstone_\" Bootswatch_ theme.\n* `Django Cloud Browser`_: A Django reusable app for browsing cloud\n datastores (e.g., Amazon Web Services S3).\n* `seaborn`_: A statistical data visualization library.\n\nThe theme demo website also includes an `examples page`_ for some useful\nillustrations of getting Sphinx to play nicely with Bootstrap (also take a\nlook at the `examples source`_ for the underlying reStructuredText).\n\n.. _Bootswatch: http://bootswatch.com\n.. _United: http://bootswatch.com/united\n.. _Flatly: http://bootswatch.com/flatly\n.. _Sandstone: http://bootswatch.com/sandstone\n.. _Sphinx Bootstrap Theme: http://ryan-roemer.github.com/sphinx-bootstrap-theme\n.. _examples page: http://ryan-roemer.github.com/sphinx-bootstrap-theme/examples.html\n.. _examples source: http://ryan-roemer.github.com/sphinx-bootstrap-theme/_sources/examples.rst.txt\n.. _Django Cloud Browser: http://ryan-roemer.github.com/django-cloud-browser\n.. _seaborn: http://seaborn.pydata.org\n\n\nInstallation\n============\nInstallation from PyPI_ is fairly straightforward:\n\n1. Install the package::\n\n $ pip install sphinx_bootstrap_theme\n\n2. Edit the \"conf.py\" configuration file to point to the bootstrap theme::\n\n # At the top.\n import sphinx_bootstrap_theme\n\n # ...\n\n # Activate the theme.\n html_theme = 'bootstrap'\n html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()\n\n\nCustomization\n=============\nThe theme can be customized in varying ways (some a little more work than others).\n\nTheme Options\n-------------\nThe theme provides many built-in options that can be configured by editing\nyour \"conf.py\" file::\n\n # (Optional) Logo. Should be small enough to fit the navbar (ideally 24x24).\n # Path should be relative to the ``_static`` files directory.\n html_logo = \"my_logo.png\"\n\n # Theme options are theme-specific and customize the look and feel of a\n # theme further.\n html_theme_options = {\n # Navigation bar title. (Default: ``project`` value)\n 'navbar_title': \"Demo\",\n\n # Tab name for entire site. (Default: \"Site\")\n 'navbar_site_name': \"Site\",\n\n # A list of tuples containing pages or urls to link to.\n # Valid tuples should be in the following forms:\n # (name, page) # a link to a page\n # (name, \"/aa/bb\", 1) # a link to an arbitrary relative url\n # (name, \"http://example.com\", True) # arbitrary absolute url\n # Note the \"1\" or \"True\" value above as the third argument to indicate\n # an arbitrary url.\n 'navbar_links': [\n (\"Examples\", \"examples\"),\n (\"Link\", \"http://example.com\", True),\n ],\n\n # Render the next and previous page links in navbar. (Default: true)\n 'navbar_sidebarrel': True,\n\n # Render the current pages TOC in the navbar. (Default: true)\n 'navbar_pagenav': True,\n\n # Tab name for the current pages TOC. (Default: \"Page\")\n 'navbar_pagenav_name': \"Page\",\n\n # Global TOC depth for \"site\" navbar tab. (Default: 1)\n # Switching to -1 shows all levels.\n 'globaltoc_depth': 2,\n\n # Include hidden TOCs in Site navbar?\n #\n # Note: If this is \"false\", you cannot have mixed ``:hidden:`` and\n # non-hidden ``toctree`` directives in the same page, or else the build\n # will break.\n #\n # Values: \"true\" (default) or \"false\"\n 'globaltoc_includehidden': \"true\",\n\n # HTML navbar class (Default: \"navbar\") to attach to
element.\n # For black navbar, do \"navbar navbar-inverse\"\n 'navbar_class': \"navbar navbar-inverse\",\n\n # Fix navigation bar to top of page?\n # Values: \"true\" (default) or \"false\"\n 'navbar_fixed_top': \"true\",\n\n # Location of link to source.\n # Options are \"nav\" (default), \"footer\" or anything else to exclude.\n 'source_link_position': \"nav\",\n\n # Bootswatch (http://bootswatch.com/) theme.\n #\n # Options are nothing (default) or the name of a valid theme\n # such as \"cosmo\" or \"sandstone\".\n #\n # The set of valid themes depend on the version of Bootstrap\n # that's used (the next config option).\n #\n # Currently, the supported themes are:\n # - Bootstrap 2: https://bootswatch.com/2\n # - Bootstrap 3: https://bootswatch.com/3\n 'bootswatch_theme': \"united\",\n\n # Choose Bootstrap version.\n # Values: \"3\" (default) or \"2\" (in quotes)\n 'bootstrap_version': \"3\",\n }\n\nNote for the navigation bar title that if you don't specify a theme option of\n``navbar_title`` that the \"conf.py\" ``project`` string will be used. We don't\nuse the ``html_title`` or ``html_short_title`` values because by default those\nboth contain version strings, which the navigation bar treats differently.\n\nBootstrap Versions\n------------------\nThe theme supports Bootstrap ``v2.3.2`` and ``v3.3.7`` via the\n``bootstrap_version`` theme option (of ``\"2\"`` or ``\"3\"``). Some notes\nregarding version differences:\n\n* Bootstrap 3 has dropped support for `sub-menus`_, so while supported by this\n theme, they will not show up in site or page menus.\n* Internally, \"navbar.html\" is the Sphinx template used for Bootstrap v3 and\n \"navbar-2.html\" is the template used for v2.\n* If you are unsure what to choose, choose Bootstrap **3**. If you experience some\n form of compatibility issues, then try and use Bootstrap 2.\n\n.. _`sub-menus`: http://stackoverflow.com/questions/18023493\n\nExtending \"layout.html\"\n-----------------------\nAs a more \"hands on\" approach to customization, you can override any template\nin this Sphinx theme or any others. A good candidate for changes is\n\"layout.html\", which provides most of the look and feel. First, take a look\nat the \"layout.html\" file that the theme provides, and figure out\nwhat you need to override. As a side note, we have some theme-specific\nenhancements, such as the ``navbarextra`` template block for additional\ncontent in the navbar.\n\nThen, create your own \"_templates\" directory and \"layout.html\" file (assuming\nyou build from a \"source\" directory)::\n\n $ mkdir source/_templates\n $ touch source/_templates/layout.html\n\nThen, configure your \"conf.py\"::\n\n templates_path = ['_templates']\n\nFinally, edit your override file \"source/_templates/layout.html\"::\n\n {# Import the theme's layout. #}\n {% extends \"!layout.html\" %}\n\n {# Add some extra stuff before and use existing with 'super()' call. #}\n {% block footer %}\n

My footer of awesomeness.

\n {{ super() }}\n {% endblock %}\n\n\nAdding Custom CSS\n-----------------\nAlternately, you could add your own custom static media directory with a CSS\nfile to override a style, which in the demo would be something like::\n\n $ mkdir source/_static\n $ touch source/_static/my-styles.css\n\nIn the new file \"source/_static/my-styles.css\", add any appropriate styling,\ne.g. a bold background color::\n\n footer {\n background-color: red;\n }\n\nThen, in \"conf.py\", edit this line::\n\n html_static_path = [\"_static\"]\n\nFrom there it depends on which version of Sphinx you are using:\n\n**Sphinx <= 1.5**\n\nYou will need the override template \"source/_templates/layout.html\" file\nconfigured as above, but with the following code::\n\n {# Import the theme's layout. #}\n {% extends \"!layout.html\" %}\n\n {# Custom CSS overrides #}\n {% set css_files = css_files + ['_static/my-styles.css'] %}\n\n.. note::\n\n See `Issue #159 `_\n for more information.\n\n**Sphinx >= 1.6.1**\n\nAdd a ``setup`` function in \"conf.py\" with stylesheet paths added relative to the\nstatic path::\n\n def setup(app):\n app.add_stylesheet(\"my-styles.css\") # also can be a full URL\n # app.add_stylesheet(\"ANOTHER.css\")\n # app.add_stylesheet(\"AND_ANOTHER.css\")\n\n.. tip::\n\n Sphinx automatically calls your ``setup`` function defined in \"conf.py\" during\n the build process for you. There is no need to, nor should you, call this\n function directly in your code.\n\nTheme Notes\n===========\nSphinx\n------\nThe theme places the global TOC, local TOC, navigation (prev, next) and\nsource links all in the top Bootstrap navigation bar, along with the Sphinx\nsearch bar on the left side.\n\nThe global (site-wide) table of contents is the \"Site\" navigation dropdown,\nwhich is a configurable level rendering of the ``toctree`` for the entire site.\nThe local (page-level) table of contents is the \"Page\" navigation dropdown,\nwhich is a multi-level rendering of the current page's ``toc``.\n\n\nBootstrap\n---------\nThe theme offers Bootstrap v2.x and v3.x, both of which rely on\njQuery v.1.9.x. As the jQuery that Bootstrap wants can radically depart from\nthe jQuery Sphinx internal libraries use, the library from this theme is\nintegrated via ``noConflict()`` as ``$jqTheme``.\n\nYou can override any static JS/CSS files by dropping different versions in your\nSphinx \"_static\" directory.\n\n\nContributing\n============\nContributions to this project are most welcome. Please make sure that the demo\nsite builds cleanly, and looks like what you want. First build the demo::\n\n $ fab clean && fab demo\n\nThen, view the site in the development server::\n\n $ fab demo_server\n\nAlso, if you are adding a new type of styling or Sphinx or Bootstrap construct,\nplease add a usage example to the \"Examples\" page.\n\n**Note**: If you are in Python 3, Fabric isn't available, so we have a very\nrough Makefile in its place. Try::\n\n $ make clean && make demo\n\nThen, view the site in the development server::\n\n $ make demo_server\n\n\nLicenses\n========\nSphinx Bootstrap Theme is licensed under the MIT_ license.\n\n`Bootstrap v2`_ is licensed under the Apache license 2.0.\n\n`Bootstrap v3.1.0+`_ is licensed under the MIT license.\n\n.. _`MIT`: https://github.com/ryan-roemer/sphinx-bootstrap-theme/blob/master/LICENSE.txt\n.. _`Bootstrap v2`: https://github.com/twbs/bootstrap/blob/v2.3.2/LICENSE\n.. _`Bootstrap v3.1.0+`: https://github.com/twbs/bootstrap/blob/master/LICENSE\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://ryan-roemer.github.com/sphinx-bootstrap-theme/README.html", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "sphinx-bootstrap-theme", "package_url": "https://pypi.org/project/sphinx-bootstrap-theme/", "platform": "", "project_url": "https://pypi.org/project/sphinx-bootstrap-theme/", "project_urls": { "Homepage": "http://ryan-roemer.github.com/sphinx-bootstrap-theme/README.html" }, "release_url": "https://pypi.org/project/sphinx-bootstrap-theme/0.7.1/", "requires_dist": null, "requires_python": "", "summary": "Sphinx Bootstrap Theme.", "version": "0.7.1" }, "last_serial": 5004460, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4118cc6ca785433faabe34ad4f5376cb", "sha256": "bcb1777470e5ee1b2915a2dbf51780afd7f9423b63e513ca7156f434a961a333" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4118cc6ca785433faabe34ad4f5376cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 201859, "upload_time": "2012-11-18T11:29:06", "url": "https://files.pythonhosted.org/packages/60/fd/a0ed4dc5c2598955b52674e447fce61725c4c1c91015fb6e35e6d5c5eb7a/sphinx-bootstrap-theme-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "34fb4aa7ca8e82e54a6c901cf8230ab4", "sha256": "82096fa41ae6d820b19582ac6b15edc143bb8a0f5ef0bc215ec0722f84ee0e6a" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.1.tar.gz", "has_sig": false, "md5_digest": "34fb4aa7ca8e82e54a6c901cf8230ab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202359, "upload_time": "2012-11-30T23:42:22", "url": "https://files.pythonhosted.org/packages/b6/88/3fb75cb8d70c124de28c1f725186fb58acfd79219f5abcca6672ec215f8e/sphinx-bootstrap-theme-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "1711175d9c07c86ebd3ec4272237f96b", "sha256": "494938fdb51deb0730e92b588ff57d50145a73c811ef68b74152e021c0bd0a3f" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.2.tar.gz", "has_sig": false, "md5_digest": "1711175d9c07c86ebd3ec4272237f96b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202781, "upload_time": "2012-12-21T04:22:08", "url": "https://files.pythonhosted.org/packages/ba/a1/7e8c7f55f30775c75a7063c1929052976fcc48f3c0984ca6f5de45a30b3f/sphinx-bootstrap-theme-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6657da8282b86baf0e4138a59c40f734", "sha256": "c7d8c1ffe3c826222eaf70683a1e84c2317fc9bbb8df77e8b19e924ae6d5dd3b" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.3.tar.gz", "has_sig": false, "md5_digest": "6657da8282b86baf0e4138a59c40f734", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202509, "upload_time": "2013-01-19T22:21:06", "url": "https://files.pythonhosted.org/packages/87/a1/a4352a7326475a669c67b2e6e93ee9d5c12ef4d7bc3a051f66b13f09167d/sphinx-bootstrap-theme-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "dba7ea7418280f649f281508085b2aab", "sha256": "58da64d7b50afbb738cc36ef58ad8fc8136562883764d9aba17c0f24e1b4f6ce" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.4.tar.gz", "has_sig": false, "md5_digest": "dba7ea7418280f649f281508085b2aab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207778, "upload_time": "2013-02-09T22:41:11", "url": "https://files.pythonhosted.org/packages/f9/ce/f837e690240142c7c1676c33ba5ff451cf7151d852773f0ae287ba12104e/sphinx-bootstrap-theme-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "0fb885bd086eeb57e8943cd07379ec88", "sha256": "c6611bc0c550fb8e17cd116523703300e60673a3f4c3e906d646cc034e5c17ee" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.5.tar.gz", "has_sig": false, "md5_digest": "0fb885bd086eeb57e8943cd07379ec88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207796, "upload_time": "2013-02-09T22:46:08", "url": "https://files.pythonhosted.org/packages/f4/99/bf254303a17ee527727a9eb854005f12763724e529731b75cf3af665c10c/sphinx-bootstrap-theme-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "3d2b665191132d729ec9f784827b1ea8", "sha256": "488b7bbc108f29125d2b49c1d2d874206565cbd2bbd7f650926cc1e1b8e18f8b" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.6.tar.gz", "has_sig": false, "md5_digest": "3d2b665191132d729ec9f784827b1ea8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207983, "upload_time": "2013-02-09T23:05:14", "url": "https://files.pythonhosted.org/packages/80/68/c564b0388b70b23ba07d6717ffa2fa96a5ae9c7ce1e2dad79902b34c61d3/sphinx-bootstrap-theme-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "9109cf09370753a4ee75fe30b176d40b", "sha256": "e4d7844017e1094dc3a154400ddf8667960398735080a40f9f95a03156c1afd7" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.7.tar.gz", "has_sig": false, "md5_digest": "9109cf09370753a4ee75fe30b176d40b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 208032, "upload_time": "2013-02-19T14:27:47", "url": "https://files.pythonhosted.org/packages/ec/dc/62a80e43360303dda0e42147756255ddd752db17586c333f627396346b0a/sphinx-bootstrap-theme-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "d0c4aa95cf6a5f8fde209a9e335bcadb", "sha256": "d2f1d440420509317d4094dac2822ede84c395ec81c5798e134938b3d0ff2776" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.1.8.tar.gz", "has_sig": false, "md5_digest": "d0c4aa95cf6a5f8fde209a9e335bcadb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 208294, "upload_time": "2013-03-08T14:14:17", "url": "https://files.pythonhosted.org/packages/55/dc/3759800d9c9357e900e8f297a258c1c5787b4042b635f149169e06c57923/sphinx-bootstrap-theme-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "dc990a7411db387658537e215c0ca984", "sha256": "fd8910bb1d4b16fb426d7e94c514008c4ac861cc9533c64978d06361e524bdef" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.0.tar.gz", "has_sig": false, "md5_digest": "dc990a7411db387658537e215c0ca984", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209366, "upload_time": "2013-03-29T19:00:32", "url": "https://files.pythonhosted.org/packages/f4/88/829dfd65adb82638a1d443952369933ca0db88401b9dc29ba9d153daf60c/sphinx-bootstrap-theme-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2c6ca66be2dbeaa6045c0425c7ffdf2b", "sha256": "24bdfb7f5dac7c5ec6bb15fd2831a35050ea096c5d14611ef8798cd7cfb43afc" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.1.tar.gz", "has_sig": false, "md5_digest": "2c6ca66be2dbeaa6045c0425c7ffdf2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209595, "upload_time": "2013-04-15T13:35:15", "url": "https://files.pythonhosted.org/packages/39/3d/b1b02131ec1bb9dd7060ccef3fb190644863c18540b2feb1d143c8a548ba/sphinx-bootstrap-theme-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4dcb4d8c7921fb9ab1906f5087a64ca5", "sha256": "7f11e4236184239abd9d458eef7e390d7fdafae5c029b01af8335b6d723aefe9" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4dcb4d8c7921fb9ab1906f5087a64ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 209909, "upload_time": "2013-04-22T15:32:12", "url": "https://files.pythonhosted.org/packages/41/18/afdd10d9bb4f26ee315c1dcd36b8ec9df6af3895f00ef0acbdeb12268ee9/sphinx-bootstrap-theme-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "57d1d909165187113b5181f0d8cce8dd", "sha256": "ce48786bc4dc3814a7af8e5dc5cb0aae58ef426abdf4c0f6d6369690fd405407" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.3.tar.gz", "has_sig": false, "md5_digest": "57d1d909165187113b5181f0d8cce8dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 210172, "upload_time": "2013-05-13T15:16:08", "url": "https://files.pythonhosted.org/packages/cb/4f/0db2149e5d5c14bb14b9adfc4ee45e31685c3a33196c47585772d61ab3d7/sphinx-bootstrap-theme-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "a612d777b146892e8ecbbc85ad815567", "sha256": "e1aa410c8b08fae3b32d2b64f540037bf8d2e5265b0e0b00d66a022b06578ea4" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.4.tar.gz", "has_sig": false, "md5_digest": "a612d777b146892e8ecbbc85ad815567", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 210434, "upload_time": "2013-06-10T18:29:18", "url": "https://files.pythonhosted.org/packages/2d/bd/6d3b44e13f08bc4527d72cfa06578e7b91e64cd95f079f2cc261c3bb2d8f/sphinx-bootstrap-theme-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "749a1aa10b279059284db276cfa7104a", "sha256": "104ae930bf8985de868cab60ca8a1792d545ed9b3b8f66f81915fbf62a37d365" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.5.tar.gz", "has_sig": false, "md5_digest": "749a1aa10b279059284db276cfa7104a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211445, "upload_time": "2013-07-05T20:18:48", "url": "https://files.pythonhosted.org/packages/7c/cc/bfb9427f91b65061865e5bd0e020cfc3aab916685e64bdbfdf266f62f663/sphinx-bootstrap-theme-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "6da42307add9c749a4c35e68f072f839", "sha256": "4e5148670cc2edeb2cec98ab6c110bc30e40b792b21b52b0a706c048c4a1af4a" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.6.tar.gz", "has_sig": false, "md5_digest": "6da42307add9c749a4c35e68f072f839", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211944, "upload_time": "2013-07-09T17:46:41", "url": "https://files.pythonhosted.org/packages/2e/67/cc76407c049486b847f264efafc6a019e3026d32b7ed7ade3d37234bc05d/sphinx-bootstrap-theme-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "84ae3fe57abb1d92de059702c52953b4", "sha256": "c249f062580c6e3d34dbadb5829f3bc595c9d20001e19359f4924c4873a63c8a" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.7.tar.gz", "has_sig": false, "md5_digest": "84ae3fe57abb1d92de059702c52953b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212383, "upload_time": "2013-07-25T16:01:06", "url": "https://files.pythonhosted.org/packages/1f/50/7720612386f4a94752a227a55eb806c4327a90770c297d1e7fe16116b268/sphinx-bootstrap-theme-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "ec9beb235b186f49243005131357c129", "sha256": "d28cd172d87284c21057389bcabb1b183924395433ff8ac4812c2c9741c97ecd" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.8.tar.gz", "has_sig": false, "md5_digest": "ec9beb235b186f49243005131357c129", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213321, "upload_time": "2013-08-30T01:33:23", "url": "https://files.pythonhosted.org/packages/b5/59/c04cd9a607cf6fcd451ec2b551b75a7ab7f1fc0ac4b4da86d61dfbefbdbd/sphinx-bootstrap-theme-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "e9b6abdf38fb3a43a83ce87e353441a5", "sha256": "b7385c364613a6b05ff32a7524a6943e966838150107e662ae2273274f4ffc0c" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.2.9.tar.gz", "has_sig": false, "md5_digest": "e9b6abdf38fb3a43a83ce87e353441a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213777, "upload_time": "2013-09-08T21:26:52", "url": "https://files.pythonhosted.org/packages/0e/8b/68e0346b407f6b2d988efe089a5459c9623bf48f81c87ece56972641836f/sphinx-bootstrap-theme-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c7c940fbc33d1f0665e1798d263185fb", "sha256": "312bfc995a682c4f17bfb7cd6d4592b66d12275716e3fe4f3f5ede2c6231752a" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.0.tar.gz", "has_sig": false, "md5_digest": "c7c940fbc33d1f0665e1798d263185fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 391412, "upload_time": "2013-09-08T22:46:55", "url": "https://files.pythonhosted.org/packages/21/51/ae3b041e711c0b7e7c1aa08ee3021e4838e215d4e568a9f28bb3329eb029/sphinx-bootstrap-theme-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "952fc1f45f0bad60a611ba98b12e97af", "sha256": "f149c9b5443bbb1eda30f3fcb28612cd4d262f43fa99cb48c44a2d64f91fe061" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.1.tar.gz", "has_sig": false, "md5_digest": "952fc1f45f0bad60a611ba98b12e97af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 392309, "upload_time": "2013-09-13T00:09:20", "url": "https://files.pythonhosted.org/packages/9f/67/affe797f13d9eb5988f4868cb01e69217caf7af466c078571738dfb3320b/sphinx-bootstrap-theme-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "349113b26030b5b8aab3dba5602cb945", "sha256": "5fc093e31582b867e1a9e2c6e35b9d06756a3ad0d3c2b291494ad611819e0386" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.2.tar.gz", "has_sig": false, "md5_digest": "349113b26030b5b8aab3dba5602cb945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 392425, "upload_time": "2013-10-04T13:01:16", "url": "https://files.pythonhosted.org/packages/4a/d4/701a9dc516ce9a8c2fbf786a1eac40396b8e530f7e7042c2cb2168806543/sphinx-bootstrap-theme-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "a8b05ab175a26c02a007200104dce521", "sha256": "cd35d5eb6d6b6deaac1107d7ea8ad4742be8b0447ec8f74a3b8b8b3a4c2e09d4" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.3.tar.gz", "has_sig": false, "md5_digest": "a8b05ab175a26c02a007200104dce521", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 767889, "upload_time": "2013-12-06T22:22:42", "url": "https://files.pythonhosted.org/packages/1b/6d/3d798c1ebcf6f14bbe44341c833c9de6bd682a14b4902c6f5a485c633500/sphinx-bootstrap-theme-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c0ed957479dfb1daa2c75345beaf84ce", "sha256": "6ea1b0b4797a713f059d927d88c8423b70e87bb89f07086f814b9cbd63779a85" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.4.tar.gz", "has_sig": false, "md5_digest": "c0ed957479dfb1daa2c75345beaf84ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 801706, "upload_time": "2013-12-10T13:29:21", "url": "https://files.pythonhosted.org/packages/e4/2c/6413be1e92f63b7519f8f27c6cd65aa5edc601668383123ddd0115eb2ed4/sphinx-bootstrap-theme-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "a51f524a384b5e72de5989c4edd08e91", "sha256": "1b7ec99e22d2f02f553982e9ffe9f750a4739d39533a76d334c8a3bb995dac14" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.5.tar.gz", "has_sig": false, "md5_digest": "a51f524a384b5e72de5989c4edd08e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802186, "upload_time": "2014-01-07T13:23:36", "url": "https://files.pythonhosted.org/packages/91/a4/9b12641c941d7a394dd71fbc4b40ffd05e0bbfb08fa46af76da8f4574f41/sphinx-bootstrap-theme-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "7f35196f9535ba11de5c647366761c82", "sha256": "06d40046e13f4111908d2b1d152d9992981b153fb74276a3aad0d7b5a89c9ff5" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.6.tar.gz", "has_sig": false, "md5_digest": "7f35196f9535ba11de5c647366761c82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802687, "upload_time": "2014-01-12T17:33:20", "url": "https://files.pythonhosted.org/packages/7c/85/8afc1941a4ccf57c3fa54c0f6b660e080d3e4f56c0b27bf642a1f257a769/sphinx-bootstrap-theme-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "cfb105d7bae9513e0e3dfd43fddbf9b2", "sha256": "c5534c905a78e27ab128313a5f85abe75318c8885695056e9dea30edd988467c" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.7.tar.gz", "has_sig": false, "md5_digest": "cfb105d7bae9513e0e3dfd43fddbf9b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 803053, "upload_time": "2014-02-09T04:38:04", "url": "https://files.pythonhosted.org/packages/38/0c/bedeced10746ce8926fdbc9b7628a4a0dca15cb9b10a88fde0c66e735986/sphinx-bootstrap-theme-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "f3d3fe0342f2af5838f236aee8ebb6f0", "sha256": "d1a22356df803337cd3ba2a394012379cfba41454105bd65feaa4f78c7f79328" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.8.tar.gz", "has_sig": false, "md5_digest": "f3d3fe0342f2af5838f236aee8ebb6f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 834920, "upload_time": "2014-02-12T14:11:42", "url": "https://files.pythonhosted.org/packages/2e/6c/cdd4b1a88c2c785fab357805c05af246ab1166ed52a0fd16a9bda9f18b2e/sphinx-bootstrap-theme-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "d7d2e63289a1e2a2aa1bc2113c9eebcc", "sha256": "5f47ce597d688218f1bd3cffba573c68d1537a99b3a85c7e07ce10e8516ff083" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.3.9.tar.gz", "has_sig": false, "md5_digest": "d7d2e63289a1e2a2aa1bc2113c9eebcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 835004, "upload_time": "2014-02-14T01:48:57", "url": "https://files.pythonhosted.org/packages/d0/6c/4bc2b743d67c82459a1ecf7aa240a026925b2cb06536e0b274d466be9e89/sphinx-bootstrap-theme-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "067f6c8c8b30bb8e70884fce45ce1550", "sha256": "ad7c2645a3f097afd102d3f6aebe32ffb1ee566b803517f9b38ea97c204550fa" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.0.tar.gz", "has_sig": false, "md5_digest": "067f6c8c8b30bb8e70884fce45ce1550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 922474, "upload_time": "2014-02-27T23:16:41", "url": "https://files.pythonhosted.org/packages/00/fb/97f088f3513b66218e0d227f5c865e0fa3ffbcb96a98c1a7a4455ad8ebea/sphinx-bootstrap-theme-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "133bc4d67c98ba171c1ab536ebef7193", "sha256": "9c7f19bc8adc51f355aa458fd05314f89044e0a8da81aec541d62d06578b658c" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.1.tar.gz", "has_sig": false, "md5_digest": "133bc4d67c98ba171c1ab536ebef7193", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 923259, "upload_time": "2014-08-27T17:30:13", "url": "https://files.pythonhosted.org/packages/bb/1f/b46a959c3d6b6cee92709ba0c9b14e2488c596c58fb221f56535e378f425/sphinx-bootstrap-theme-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "f80efc13033c0e9e82b364f7a864c6d2", "sha256": "de8de3efdefe9aad4c33ac889e947b00bd31d38002e98e6d2b220247d1415bad" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.10.tar.gz", "has_sig": false, "md5_digest": "f80efc13033c0e9e82b364f7a864c6d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1144930, "upload_time": "2016-07-05T18:54:01", "url": "https://files.pythonhosted.org/packages/df/d9/ba8bd7da898e4ca37207f5ecb8fa514a36c26c11be46583aca03d7e160f1/sphinx-bootstrap-theme-0.4.10.tar.gz" } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "b5fb190ba2633ffac3ea17ddf8d8cb06", "sha256": "d9136007354f2d96b9f869efff9bcb8078f8250858356854535901226982f8e1" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.11.tar.gz", "has_sig": false, "md5_digest": "b5fb190ba2633ffac3ea17ddf8d8cb06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145124, "upload_time": "2016-07-08T23:34:01", "url": "https://files.pythonhosted.org/packages/4d/6d/8d32caf9168c0962ddd91743a201e28758e27c90ab01b87bba08b454443d/sphinx-bootstrap-theme-0.4.11.tar.gz" } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "630401f27ece7a49ae3d8f028cf9e885", "sha256": "c5cc5ce705be698cba461d0e30faef82b640db3452b87f5654fdbb9b4512b572" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.12.tar.gz", "has_sig": false, "md5_digest": "630401f27ece7a49ae3d8f028cf9e885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145256, "upload_time": "2016-07-19T13:41:13", "url": "https://files.pythonhosted.org/packages/7a/23/4a29bcaba3c413f2870fd5dbbc22f23f330d096944a7d5639f4418f16d52/sphinx-bootstrap-theme-0.4.12.tar.gz" } ], "0.4.13": [ { "comment_text": "", "digests": { "md5": "32e513a9c8ffbb8c1e4b036e8f74fb51", "sha256": "47f7719e56304026f285455bbb115525d227a6e23341d4b7f6f0b48b2eface82" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.13.tar.gz", "has_sig": false, "md5_digest": "32e513a9c8ffbb8c1e4b036e8f74fb51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145280, "upload_time": "2016-12-18T06:34:51", "url": "https://files.pythonhosted.org/packages/8e/28/0c0c52292a8abf56687776f902fff3ab6fa8bc6a0c3f2d235f1e2304aaea/sphinx-bootstrap-theme-0.4.13.tar.gz" } ], "0.4.14": [ { "comment_text": "", "digests": { "md5": "2cd5e33786c25e48363dcd7f07ac2cdf", "sha256": "1706f99d0c91b3dd70b29ca98e42a7fa23db1b4750a281be72a93a481de7ceca" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.14.tar.gz", "has_sig": false, "md5_digest": "2cd5e33786c25e48363dcd7f07ac2cdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145356, "upload_time": "2017-02-10T23:24:48", "url": "https://files.pythonhosted.org/packages/29/18/05fd178bb559a760723cf7c59f36f997d724fb547f9cbec398705e86c61b/sphinx-bootstrap-theme-0.4.14.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "81fb222f75707fe314e7011c6373a75d", "sha256": "8291e995707a4ef86eab68488fdb5c17fe8b50bfa0c8f72094009dea305d9564" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.2.tar.gz", "has_sig": false, "md5_digest": "81fb222f75707fe314e7011c6373a75d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 903461, "upload_time": "2014-09-24T15:08:13", "url": "https://files.pythonhosted.org/packages/b0/80/d16fd2decf317158a9b8ea38d4bac8e03f0a836d69c301e7ba94c1e6922a/sphinx-bootstrap-theme-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "28bcf779e5ca9e7fe89a3cc55d25c36f", "sha256": "ba8d3297ac765aaf58207215313ea53849ebfd26babe3ec3e8a955606b10d426" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.3.tar.gz", "has_sig": false, "md5_digest": "28bcf779e5ca9e7fe89a3cc55d25c36f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 991483, "upload_time": "2014-11-10T19:35:07", "url": "https://files.pythonhosted.org/packages/a4/90/c610c0cd5ba88d083078f24acfb6f990a42a8f514805d24b9fa0f2e40f0a/sphinx-bootstrap-theme-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "d22077d018237b84ef417e6513da27fc", "sha256": "f45e8ea808c67e286b5af04dd25b3d6919f5a742914137c6cd76a045450fcce2" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.4.tar.gz", "has_sig": false, "md5_digest": "d22077d018237b84ef417e6513da27fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 991414, "upload_time": "2014-12-01T23:16:07", "url": "https://files.pythonhosted.org/packages/de/76/933cf7da96f9805d2eb6f01e7ae9ce6247fa0490ecaefb5827d95a53ed49/sphinx-bootstrap-theme-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "06ca1cb93aa7372e02815d43419b269c", "sha256": "f36d32aeeb4d08a1b281e745db4228b5e40ddacf7928a68e26b7f909fa391d85" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.5.tar.gz", "has_sig": false, "md5_digest": "06ca1cb93aa7372e02815d43419b269c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1015290, "upload_time": "2014-12-04T18:24:39", "url": "https://files.pythonhosted.org/packages/04/55/1e53d616b06159b7880a2e1e9b869667f45b171bf56e5d80995c96801283/sphinx-bootstrap-theme-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "7f5d5a8b105686add792c38bdf46ee98", "sha256": "27dc1253016d965f0ba0b1ef592c3fbbe1817c55d1400131df422979ace2958c" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.6.tar.gz", "has_sig": false, "md5_digest": "7f5d5a8b105686add792c38bdf46ee98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1110111, "upload_time": "2015-05-29T16:40:11", "url": "https://files.pythonhosted.org/packages/62/0f/c7037963dc8f6f94a2daea4bab507c57a7ce9fc7795a41079b26482cc5d7/sphinx-bootstrap-theme-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "957291ab737c8c2a39494f68e13ba8b5", "sha256": "ee76d8c75f20bccf6dc54df2cd75e7f012cbb82f32edb7b088635d5765519120" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.7.tar.gz", "has_sig": false, "md5_digest": "957291ab737c8c2a39494f68e13ba8b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1108321, "upload_time": "2015-06-27T01:05:14", "url": "https://files.pythonhosted.org/packages/b3/7b/841a5bc308858fa93c2fdd77c819325ebb5fa1a28fbaeafe05c4268a65fc/sphinx-bootstrap-theme-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "b8075697e97ca230c72289a80febd64e", "sha256": "5ab9bb58a08226df2084d99225629b2571496f7541b455e490f41ec9eb5b6ce6" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.8.tar.gz", "has_sig": false, "md5_digest": "b8075697e97ca230c72289a80febd64e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1108608, "upload_time": "2015-10-28T13:50:38", "url": "https://files.pythonhosted.org/packages/e9/61/9b771bfeb8643355c3b13a39ad87aa1f38926f58e07312c81cc126681a4a/sphinx-bootstrap-theme-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "e3bca5a69a7d547def2f54b24fb5ed46", "sha256": "2b83be16737c96ef44fba6fffab74f30a2826bc29ebb53d5a28fab1b2e789cb3" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.4.9.tar.gz", "has_sig": false, "md5_digest": "e3bca5a69a7d547def2f54b24fb5ed46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1146587, "upload_time": "2016-04-07T22:44:05", "url": "https://files.pythonhosted.org/packages/fe/00/eb44ad895b97e16e359c1263f4261924f8164ba37dd77f0b89705adc7105/sphinx-bootstrap-theme-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "feff7e78d25435d31d1d5207661470f0", "sha256": "0dc9a6f5d15287b34b2a4754aa9cb4ef8a4b3c2eb5c584298f31aa18b4933ed0" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.5.0.tar.gz", "has_sig": false, "md5_digest": "feff7e78d25435d31d1d5207661470f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145791, "upload_time": "2017-05-18T17:14:43", "url": "https://files.pythonhosted.org/packages/bb/f5/f4c92a521650c97253410dfa55811f8aa96b2a42e76f6253e2c45ac29bc3/sphinx-bootstrap-theme-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "9c1637b03060171d3f033f2722b569ef", "sha256": "b1c27d1b27b48acd787384b272a22cf1520fe1faafd361a7825c52d45d3528e8" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.5.1.tar.gz", "has_sig": false, "md5_digest": "9c1637b03060171d3f033f2722b569ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145851, "upload_time": "2017-05-18T17:25:22", "url": "https://files.pythonhosted.org/packages/cf/85/2101846ce9b5815dc462b59ff8cc7047695c5f13fd9002f93b63d6b28ed9/sphinx-bootstrap-theme-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "ded509f2387c23ab65703d5dc861a053", "sha256": "1b94cfe9f9c52ac4f00bdb2aa385af714460fbd35c3a4e351b80fe25a9eb2fb4" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ded509f2387c23ab65703d5dc861a053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145866, "upload_time": "2017-05-22T13:34:31", "url": "https://files.pythonhosted.org/packages/3b/a9/eb3aad1baed21c2947cdb6f29570b715bc0f080b631348f7d4710ef647cd/sphinx-bootstrap-theme-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "53ee83c77ea88f48cd3531e76d91355e", "sha256": "fe9f591524941ec2f2d6cf23b7b0fab24395eed18c0980aa87cb9f2decb16464" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.5.3.tar.gz", "has_sig": false, "md5_digest": "53ee83c77ea88f48cd3531e76d91355e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1145935, "upload_time": "2017-05-22T13:35:49", "url": "https://files.pythonhosted.org/packages/f1/cb/a743438a8da3498a88f774e4b2715d2a682bc4ae6aebd682a8335131fbca/sphinx-bootstrap-theme-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "9c9e46f57e5cd7bef70453c66e2d2af5", "sha256": "bfc7c2048ab5eabd6556914de1e40441ee2bb10677fd795286c674ba072e2747" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.0.tar.gz", "has_sig": false, "md5_digest": "9c9e46f57e5cd7bef70453c66e2d2af5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232454, "upload_time": "2017-07-23T04:07:58", "url": "https://files.pythonhosted.org/packages/c4/3f/5141b06c567731d21d5905e1c9377d63081feaaaad263e5dd7e4084c1df4/sphinx-bootstrap-theme-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "40b75e39a07e38ca68a2c9e3f4f27c10", "sha256": "277ed7695b6c9427997b78b3f531ff1e5d7b52a6733f67d92b07b29dc1704a59" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.1.tar.gz", "has_sig": false, "md5_digest": "40b75e39a07e38ca68a2c9e3f4f27c10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232697, "upload_time": "2018-01-09T18:25:44", "url": "https://files.pythonhosted.org/packages/75/11/e5877129133a05df3cd72cc4e8f3f440e1b9c4d8810a089ce305018bf7f0/sphinx-bootstrap-theme-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "09ad654ed0159a490301e7efc9ad247e", "sha256": "d0291c1641d15508a0d5c8789f76688373d1fc88ec0e600c08fe415608a7db40" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.2.tar.gz", "has_sig": false, "md5_digest": "09ad654ed0159a490301e7efc9ad247e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232828, "upload_time": "2018-01-15T20:52:06", "url": "https://files.pythonhosted.org/packages/69/af/6b07e6750a23fedce7078c63086214dd78e11c0d167538550797f086e5a2/sphinx-bootstrap-theme-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "3f9df365fb6138f5eb971795e368be95", "sha256": "8c3bc9d0b38d31097b89bb8bd0b391b85348d8dc11a39ea13cd3b6fbdd388363" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.3.tar.gz", "has_sig": false, "md5_digest": "3f9df365fb6138f5eb971795e368be95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232911, "upload_time": "2018-01-18T18:02:52", "url": "https://files.pythonhosted.org/packages/4a/52/0bbb7a6abd11af2ae53fcd058cb378279432a7f96bb930826de70e650fd4/sphinx-bootstrap-theme-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "2e883ecc59dd70dbad71b4323e4ad0a3", "sha256": "edbae42653f1aeeece1b052bd5fa5ff59c1cdb85377de83f1281d487393f7e94" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.4.tar.gz", "has_sig": false, "md5_digest": "2e883ecc59dd70dbad71b4323e4ad0a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232847, "upload_time": "2018-01-22T17:11:14", "url": "https://files.pythonhosted.org/packages/be/b7/7af1125c5f8b2580b0ad8a0f5392b14866cc2e4bdd1113472b66e2249bde/sphinx-bootstrap-theme-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "0af7c42fcb47b805a3b3bc9590fa5c1a", "sha256": "82936109a05b84029052e7efb1756161c3b4c27ae18512a90234d50fe608cba7" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.6.5.tar.gz", "has_sig": false, "md5_digest": "0af7c42fcb47b805a3b3bc9590fa5c1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1232943, "upload_time": "2018-04-11T22:29:04", "url": "https://files.pythonhosted.org/packages/8a/f6/e7dbc28e448817d2b103c57a3e4ee52f8edc143beab9595ced31e4789749/sphinx-bootstrap-theme-0.6.5.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "fd385c05765fea5c776a3fcabd196474", "sha256": "7a57615b3ef48967ac763b68beeed3833927a1e168890b5792954d33251c4999" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.7.0.tar.gz", "has_sig": false, "md5_digest": "fd385c05765fea5c776a3fcabd196474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226155, "upload_time": "2019-03-29T17:36:17", "url": "https://files.pythonhosted.org/packages/72/30/86e9e46fe15d723421c3c4a79605f098b9217948276f081883cdf77855ee/sphinx-bootstrap-theme-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "a2db84f029c14f23c2d0ad6a842197c1", "sha256": "571e43ccb76d4c6c06576aa24a826b6ebc7adac45a5b54985200128806279d08" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.7.1.tar.gz", "has_sig": false, "md5_digest": "a2db84f029c14f23c2d0ad6a842197c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226149, "upload_time": "2019-03-29T17:57:28", "url": "https://files.pythonhosted.org/packages/a9/b8/ebcd1a7c579eb85929bbfd54617c5c484ba8cd78e4d3499d749e64b5ad3b/sphinx-bootstrap-theme-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a2db84f029c14f23c2d0ad6a842197c1", "sha256": "571e43ccb76d4c6c06576aa24a826b6ebc7adac45a5b54985200128806279d08" }, "downloads": -1, "filename": "sphinx-bootstrap-theme-0.7.1.tar.gz", "has_sig": false, "md5_digest": "a2db84f029c14f23c2d0ad6a842197c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226149, "upload_time": "2019-03-29T17:57:28", "url": "https://files.pythonhosted.org/packages/a9/b8/ebcd1a7c579eb85929bbfd54617c5c484ba8cd78e4d3499d749e64b5ad3b/sphinx-bootstrap-theme-0.7.1.tar.gz" } ] }