mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
95 lines
3.7 KiB
HTML
95 lines
3.7 KiB
HTML
<header class="md-header" data-md-component="header">
|
|
|
|
<!-- Yandex.Metrika counter -->
|
|
<script type="text/javascript">
|
|
(function (d, w, c) {
|
|
(w[c] = w[c] || []).push(function() {
|
|
try {
|
|
w.yaCounter18343495 = new Ya.Metrika2({
|
|
id:18343495,
|
|
clickmap:true,
|
|
trackLinks:true,
|
|
accurateTrackBounce:true,
|
|
webvisor: {% if builder != "singlehtml" %}true{% else %}false{% endif %}
|
|
});
|
|
} catch(e) { }
|
|
});
|
|
var n = d.getElementsByTagName("script")[0],
|
|
s = d.createElement("script"),
|
|
f = function () { n.parentNode.insertBefore(s, n); };
|
|
s.type = "text/javascript";
|
|
s.async = true;
|
|
s.src = "https://mc.yandex.ru/metrika/tag.js";
|
|
if (w.opera == "[object Opera]") {
|
|
d.addEventListener("DOMContentLoaded", f, false);
|
|
} else { f(); }
|
|
})(document, window, "yandex_metrika_callbacks2");
|
|
</script>
|
|
<noscript>
|
|
<div><img src="https://mc.yandex.ru/watch/18343495" style="position:absolute; left:-9999px;" alt=""/></div>
|
|
</noscript>
|
|
<!-- /Yandex.Metrika counter -->
|
|
|
|
<nav class="md-header-nav md-grid">
|
|
<div class="md-flex">
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo">
|
|
{% if config.theme.logo.icon %}
|
|
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
|
{% else %}
|
|
<img src="{{ base_url }}/{{ config.theme.logo }}" width="24" height="24">
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
<label class="md-icon md-icon--menu md-header-nav__button" for="drawer"></label>
|
|
</div>
|
|
<div class="md-flex__cell md-flex__cell--stretch">
|
|
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
|
{% block site_name %}
|
|
{% if config.site_name == page.title %}
|
|
{{ config.site_name }}
|
|
{% else %}
|
|
<span class="md-header-nav__topic">
|
|
{{ config.site_name }}
|
|
</span>
|
|
<span class="md-header-nav__topic">
|
|
{{ page.title }}
|
|
</span>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
<script type="text/javascript">
|
|
if (window.location.pathname.indexOf('/ru/') >= 0) {
|
|
url = window.location.pathname.replace('/ru/', '/en/');
|
|
text = "RU->EN";
|
|
title = "Switch to English"
|
|
}else{
|
|
url = window.location.pathname.replace('/en/', '/ru/');
|
|
text = "EN->RU";
|
|
title = "Переключить на русский язык"
|
|
}
|
|
document.write('<a href="' + url + '" title="' + title + '" class="md-flex__ellipsis md-header-nav__title">' + text + '</a>')
|
|
</script>
|
|
</div>
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
{% block search_box %}
|
|
{% if "search" in config["plugins"] %}
|
|
<label class="md-icon md-icon--search md-header-nav__button" for="search"></label>
|
|
{% include "partials/search.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
{% if config.repo_url %}
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
|
<div class="md-header-nav__source">
|
|
{% include "partials/source.html" %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
</header>
|