adjust footer content to meet legal requirement (#13720)
This commit is contained in:
parent
30759eb350
commit
764525ba6f
|
|
@ -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 {
|
.switcher-set {
|
||||||
margin-bottom:1rem;
|
margin-bottom:1rem;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ sys.path.insert(0, os.path.abspath('doxyrest-sphinx'))
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
project = 'OpenVINO™'
|
project = 'OpenVINO™'
|
||||||
copyright = '2021, Intel®'
|
copyright = '2022, Intel®'
|
||||||
author = 'Intel®'
|
author = 'Intel®'
|
||||||
|
|
||||||
language = 'en'
|
language = 'en'
|
||||||
|
|
@ -82,6 +82,7 @@ html_theme_options = {
|
||||||
"navigation_depth": 5,
|
"navigation_depth": 5,
|
||||||
"use_edit_page_button": True,
|
"use_edit_page_button": True,
|
||||||
"github_url": "https://github.com/openvinotoolkit/openvino",
|
"github_url": "https://github.com/openvinotoolkit/openvino",
|
||||||
|
"footer_items": ["footer_info"],
|
||||||
}
|
}
|
||||||
|
|
||||||
html_context = {
|
html_context = {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
<p>
|
||||||
|
<a href="www.intel.com" alt="Intel" style="color: #000;">©2022 Intel Corporation</a>
|
||||||
|
<a href="https://www.intel.com/content/www/us/en/legal/terms-of-use.html" alt="terms of use">Terms of Use</a>
|
||||||
|
<a href="https://www.intel.com/content/www/us/en/privacy/intel-cookie-notice.html" data-cookie-notice="true" alt="cookies policy">Cookies</a>
|
||||||
|
<a href="https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html" alt="Privacy">Privacy</a>
|
||||||
|
</p>
|
||||||
|
<p style="font-size: 0.8em">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.</p>
|
||||||
Loading…
Reference in New Issue