diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index 626c856c45d..994da419bf6 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -1,3 +1,16 @@ +/* footer links */ +footer div.container div.footer-item p a { + float: left; + margin-right: 30px; +} +footer div.container div.footer-item p a:nth-child(1) { + margin-right: 50px; +} +footer div.container div.footer-item p:nth-child(2) { + clear: both; +} + +/* misc */ .switcher-set { margin-bottom:1rem; } diff --git a/docs/conf.py b/docs/conf.py index be7051bcf34..b0ed5b2c936 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ sys.path.insert(0, os.path.abspath('doxyrest-sphinx')) # -- Project information ----------------------------------------------------- project = 'OpenVINO™' -copyright = '2021, Intel®' +copyright = '2022, Intel®' author = 'Intel®' language = 'en' @@ -82,6 +82,7 @@ html_theme_options = { "navigation_depth": 5, "use_edit_page_button": True, "github_url": "https://github.com/openvinotoolkit/openvino", + "footer_items": ["footer_info"], } html_context = { diff --git a/docs/openvino_sphinx_theme/openvino_sphinx_theme/templates/footer_info.html b/docs/openvino_sphinx_theme/openvino_sphinx_theme/templates/footer_info.html new file mode 100644 index 00000000000..34b485d59bf --- /dev/null +++ b/docs/openvino_sphinx_theme/openvino_sphinx_theme/templates/footer_info.html @@ -0,0 +1,7 @@ +

+ ©2022 Intel Corporation + Terms of Use + Cookies + Privacy +

+

Intel, the Intel logo, and other Intel marks are trademarks of Intel Corporation or its subsidiaries. Other names and brands may be claimed as the property of others.

\ No newline at end of file