Metadata-Version: 1.1
Name: itcase-sphinx-theme
Version: 0.1.8
Summary: ITCase Sphinx themes for documentation styling.
Home-page: https://github.com/ITCase/itcase_sphinx_theme
Author: ITCase
Author-email: info@itcase.pro
License: UNKNOWN
Description: |PyPi|
        
        ITCase Sphinx Theme
        ===================
        
        Install
        -------
          .. code-block:: bash
        
             $ pip install itcase_sphinx_theme
        
        Edit your Sphinx's ``conf.py``
        ------------------------------
        
        Near the top, add the following
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          .. code-block:: python
        
             import itcase_sphinx_theme
        
        Activate the theme
        ~~~~~~~~~~~~~~~~~~
        
          .. code-block:: python
        
            html_theme = 'itcase'
            html_theme_path = [itcase_sphinx_theme.get_html_themes_path()]
            extensions = ['itcase_sphinx_theme']
        
        Theme options
        ~~~~~~~~~~~~~
        
          You can set theme options in ``conf.py`` like.
        
          .. code-block:: python
        
             html_theme_options = {
                 'github_button': True
                 'github_user': ITCase
                 'github_repo': itcase_sphinx_theme
             }
        
        Here are list of options with default values:
        """""""""""""""""""""""""""""""""""""""""""""
        
        * **logo** — Show logo at the top of navigation menu. ``default: false``
        * **logo_image** —  Path to logo. ``default: null``
        * **logo_width** — Width in 'px' or '%'. ``default: null``
        * **logo_height** — Height in 'px' or '%'. ``default: null``
        * **logo_image_desc** — Description after logo image. ``default: null``
        * **index_menu** — Show navigation menu on main page. ``default: false``
        * **sticky_menu** — Make navigation element always visible on page. ``default: true``
        
        * **github_button** — Show git star badge under breadcrumbs. ``default: false``
        * **github_user** — ``default: null``
        * **github_repo** — ``default: null``
        
        * **travis_button** — Show travis badge under breadcrumbs. ``default: false``
        * **travis_user** — ``default: null``
        * **travis_repo** — ``default: null``
        
        .. |PyPI| image:: http://img.shields.io/pypi/dm/itcase_sphinx_theme.svg
           :target: https://pypi.python.org/pypi/itcase_sphinx_theme/
Keywords: itcase web sphinx documentation
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python
Classifier: License :: Repoze Public License
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Documentation
