Skip to content

Commit

Permalink
add cookies, privacy notices in footer and revise CSS for display.
Browse files Browse the repository at this point in the history
Signed-off-by: michael vincerra <michael.vincerra@intel.com>
  • Loading branch information
mvincerx committed Jun 25, 2024
1 parent d72f226 commit 357735d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
3 changes: 2 additions & 1 deletion src/docs/_static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1293,8 +1293,9 @@ a:hover {
color: rgb(0, 199, 253) !important;
}

#trademarks{
.tmb-cookies-privacy{
color: rgba(0,84,174,68) !important;
padding: 0.25rem;
}

#footer-container{
Expand Down
25 changes: 15 additions & 10 deletions src/docs/_templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@

{% block head %}
<head>
<!-- START Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DT7D3YR0LH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DT7D3YR0LH');
</script>
<!-- END Google tag (gtag.js) -->
<script async src=""></script>

<link rel="stylesheet" type="text/css" href="_static/styles.css" />
<meta charset="UTF-8">
Expand Down Expand Up @@ -66,9 +58,22 @@
{% block footer %}
<footer>
<div id="footer-container">


<div id="footer-blk-1">
&copy; Copyright 2024 Intel Corporation.
<a href="https://www.intel.com/content/www/us/en/legal/trademarks.html"><span id="trademarks">*Trademarks </span></a></a>

<a href="https://www.intel.com/content/www/us/en/legal/trademarks.html">
<span class="tmb-cookies-privacy">*Trademarks </span>
</a>

<a class="footer-link" href='https://www.intel.com/content/www/us/en/privacy/intel-cookie-notice.html' data-cookie-notice='true'>
<span class="tmb-cookies-privacy">Cookies</span>
</a>

<a class="footer-link" href='https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html'>
<span class="tmb-cookies-privacy">Privacy</span>
</a>
</div>

<div>
Expand Down

0 comments on commit 357735d

Please sign in to comment.