-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jo Stichbury <[email protected]>
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,50 @@ | ||
{% extends "!layout.html" %} | ||
{% extends "!layout.html" %} {%- block extrabody %} | ||
|
||
<div class="wy-grid-header"> | ||
<div class="wy-header-logo"> | ||
{%- set _logo_url = logo_url|default(pathto('_static/' + (logo or ""), 1)) | ||
%} {%- set _root_doc = root_doc|default(master_doc) %} | ||
<a href="{{ pathto(_root_doc) }}"> | ||
{% if not theme_logo_only %}{{ project }}{% endif %} {%- if logo or | ||
logo_url %} | ||
<img src="{{ _logo_url }}" class="logo" alt="{{ _('Logo') }}" /> | ||
{%- endif %} | ||
</a> | ||
|
||
{%- if theme_display_version %} {%- set nav_version = version %} {%- if | ||
READTHEDOCS and current_version %} {%- set nav_version = current_version %} | ||
{%- endif %} {%- if nav_version %} | ||
<div class="wy-header-version">{{ nav_version }}</div> | ||
{%- endif %} {%- endif %} | ||
</div> | ||
|
||
<div class="wy-main-nav"> | ||
<a href="#">Kedro</a> | ||
<a href="#">Kedro-Viz</a> | ||
<a href="/" class="active">Kedro-Datasets</a> | ||
</div> | ||
|
||
{%- include "searchbox.html" %} | ||
</div> | ||
|
||
{% endblock %} | ||
|
||
{%- block extrahead %} | ||
<script type="text/javascript"> | ||
window.heap=window.heap||[],heap.load=function(e,t){window.heap.appid=e,window.heap.config=t=t||{};var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src="https://cdn.heapanalytics.com/js/heap-"+e+".js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(r,a);for(var n=function(e){return function(){heap.push([e].concat(Array.prototype.slice.call(arguments,0)))}},p=["addEventProperties","addUserProperties","clearEventProperties","identify","resetIdentity","removeEventProperty","setEventProperties","track","unsetEventProperty"],o=0;o<p.length;o++)heap[p[o]]=n(p[o])}; | ||
|
||
heap.load({{ "2164194004" | env_override }});{# 2164194004 coresponds to the Development environment #} | ||
|
||
// Wait for DOM to load and clone main nav into the sidebar | ||
document.addEventListener("DOMContentLoaded", function() { | ||
var sidebarSearch = document.querySelector('.wy-side-nav-search div[role="search"]'); | ||
sidebarSearch.parentNode.insertBefore(document.querySelector('.wy-main-nav').cloneNode(true), sidebarSearch); | ||
}); | ||
</script> | ||
{% endblock %} | ||
<link rel="stylesheet" href="https://kedro-shared-files.s3.eu-west-2.amazonaws.com/qb1-sphinx-rtd.css" type="text/css" | ||
/> | ||
<link rel="stylesheet" href="https://kedro-shared-files.s3.eu-west-2.amazonaws.com/theme-overrides.css" type="text/css" | ||
/> | ||
|
||
</script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters