mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-08-28 03:16:49 +00:00
97cc3cfbbd
* 1. Updated landing page to emulate look and feel of docs page on clearlinux.org 2. Added Trademarks, Cookies, and Privacy Terms links to footer with some css formatting 3. Added some CSS to pre-emptively remove added formatting to definition list entries in sphinx/rtd theme in version 2 and above Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Added start/end for footer bullet list support Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * 1. Hid toctree to reduce duplication. 2. Changed IRC link to match what is currently on the clearlinux.org site. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com>
68 lines
2.5 KiB
HTML
68 lines
2.5 KiB
HTML
{% extends "sphinx_rtd_theme/layout.html" %}
|
|
|
|
{% block htmltitle %}
|
|
<script>(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","https://www.google-analytics.com/analytics.js","ga");ga("create", "UA-61272224-1", {"cookieDomain":"auto","allowLinker":true});ga("require", "linker");ga("linker:autoLink", [/(community\.|www\.|^)clearlinux\.org/gi], true);ga("set", "anonymizeIp", true);ga("send", "pageview");</script>
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
|
|
<link rel="stylesheet" href="{{ pathto('_static/tcs_theme.css', 1) }}" type="text/css" />
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<header id="header">
|
|
<div class="padding-md--left-right">
|
|
|
|
<div class="header__site_info">
|
|
<div class="header__site_info_name">
|
|
</div>
|
|
</div>
|
|
<nav class="header__menu">
|
|
<ul class="header__menu_list">
|
|
<li class="header__menu_list_item yellow ">
|
|
<a tabindex='1' href="https://clearlinux.org">Home</a>
|
|
</li>
|
|
<li class="header__menu_list_item green ">
|
|
<a tabindex='1' href="https://clearlinux.org/about">About</a>
|
|
</li>
|
|
<li class="header__menu_list_item purple ">
|
|
<a tabindex='1' href="https://clearlinux.org/developer">Developer</a>
|
|
</li>
|
|
<li class="header__menu_list_item blue ">
|
|
<a tabindex='1' href="https://clearlinux.org/software">Software</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{ super() }}
|
|
|
|
<div id="trademarks">
|
|
<p>*Other names and brands may be claimed as the property of others.</p>
|
|
<ul class="footer__menu_list">
|
|
<li class="footer__menu_list"><a href="https://www.intel.com/content/www/us/en/legal/trademarks.html">*Trademarks</a></li>
|
|
<li class="footer__menu_list"><a href="https://www.intel.com/content/www/us/en/privacy/intel-cookie-notice.html">Cookies</a></li>
|
|
<li class="footer__menu_list"><a href="https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html">Privacy Terms</a></li>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block menu %}
|
|
{% include "cversions.html" %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
|
|
<script type="text/javascript" src="{{ pathto('_static/tcs_theme.js', 1) }}"></script>
|
|
|
|
{% endblock %}
|