0xHiteshPatel / f5-sphinx-theme

F5 Sphinx theme for documentation hosted on clouddocs.f5.com

Home Page:http://clouddocs.f5.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

F5 Sphinx Theme

Introduction

This repo contains the sphinx theme used for project documentation hosted on the clouddocs.f5.com site.

This theme should not be used without modification for project documentation that is not hosted on clouddocs.f5.com.

Setup and Configuration

  1. Download or git clone the f5-sphinx-theme.

  2. pip install . from the f5-sphinx-theme base directory.

  3. pip install -r requirements.txt to ensure dependencies are present.

  4. Add f5-sphinx-theme to the "import" section of your project's conf.py (replace any existing theme import).

    import f5_sphinx_theme
    
  5. Configure the html_theme and html_theme_theme_path() as shown below.

    html_theme = 'f5_sphinx_theme'
    html_theme_path = f5_sphinx_theme.get_html_theme_path()
    
  6. (Optional) Configure the html_sidebars option. See the sphinx documentation for more information.

    html_sidebars = {'**': ['searchbox.html', 'localtoc.html', 'globaltoc.html']}
    
  7. (Optional) Configure the html_theme_options{} dictionary. The site_name and next_prev_link options are supported.

    html_theme_options = {
                            'site_name': 'My Site Name',
                            'next_prev_link': False
                         }
    

Depending on your publication/deployment process, you may have to re-build your documentation for the changes to take effect.

Customizing CSS and Assets

The css styling for the project uses two css files:

  • f5.css contains F5's core bootstrap customizations and fonts.
  • custom.css can be used for any modifications you'd like to make for your documentation to make content easier to navigate and reference. Bear in mind that all mods must still comply with the F5 Corporate Branding strategy and requirements.

After customizing the custom.css file, you'll have to uninstall the theme and reinstall it to apply your changes.

pip uninstall f5-sphinx-theme
pip install .

Integrated Styling Tools

Font Awesome

The f5-sphinx-theme uses the Font Awesome integration provided in the sphinxjp.theme.basicstrap Sphinx theme/extension. [1]

To use this extension in your project:

  1. Add sphinxjp.themes.basicstrap to the extensions section of your project's conf.py.
  2. Add sphinxjp.themes.basicstrap to your project's requirements.txt file.

To add a Font Awesome icon to your docs:

:fonticon:`fa fa-<icon_name>`
[1]sphinxjp.themes.basicstrap is licensed under the MIT license.

TMSH/TMOS code blocks

The f5-sphinx-theme has special CSS styling for TMSH/TMOS code blocks. To use:

.. admonition:: TMSH

   tmsh show sys hardware

If you're including a multi-line print-out, format it as code as shown below:

.. admonition:: TMSH

   ::

      admin@(bigip)(cfg-sync Standalone)(Active)(/mesos)# tmsh show ltm virtual
      ------------------------------------------------------------------
      Ltm::Virtual Server: basic-0_8080
      ------------------------------------------------------------------
      Status
        Availability     : unknown
        State            : enabled
        Reason           : The children pool member(s) either don't have service checking enabled, or service check results are not available yet
        CMP              : enabled
        CMP Mode         : all-cpus
        Destination      : 10.190.25.70:8080
      ...

Copyright

Copyright 2017 F5 Networks Inc.

License

Apache V2.0

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

F5 Sphinx theme for documentation hosted on clouddocs.f5.com

http://clouddocs.f5.com

License:Apache License 2.0


Languages

Language:CSS 83.9%Language:HTML 14.3%Language:Python 1.8%