mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
98 lines
3.4 KiB
HTML
98 lines
3.4 KiB
HTML
{%- extends "basic/layout.html" %}
|
|
|
|
{%- block extrahead %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="{{ pathto('_static/custom.css', 1) }}" type="text/css" />
|
|
{% if theme_touch_icon %}
|
|
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
|
{% endif %}
|
|
{% if theme_canonical_url %}
|
|
<link rel="canonical" href="{{ theme_canonical_url }}{{ pagename }}.html"/>
|
|
{% endif %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
|
|
{% endblock %}
|
|
|
|
{# Disable base theme's top+bottom related navs; we have our own in sidebar #}
|
|
{%- block relbar1 %}{% endblock %}
|
|
{%- block relbar2 %}{% endblock %}
|
|
|
|
{# Nav should appear before content, not after #}
|
|
{%- block content %}
|
|
{%- if theme_fixed_sidebar|lower == 'true' %}
|
|
<div class="document">
|
|
{{ sidebar() }}
|
|
{%- block document %}
|
|
<div class="documentwrapper">
|
|
{%- if render_sidebar %}
|
|
<div class="bodywrapper">
|
|
{%- endif %}
|
|
<div class="body" role="main">
|
|
{% block body %} {% endblock %}
|
|
</div>
|
|
{%- if render_sidebar %}
|
|
</div>
|
|
{%- endif %}
|
|
</div>
|
|
{%- endblock %}
|
|
<div class="clearer"></div>
|
|
</div>
|
|
{%- else %}
|
|
{{ super() }}
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
|
|
{%- block footer %}
|
|
<div class="footer">
|
|
{% if show_copyright %}©{{ copyright }}.{% endif %}
|
|
{% if theme_show_powered_by|lower == 'true' %}
|
|
{% if show_copyright %}|{% endif %}
|
|
Powered by <a href="http://sphinx-doc.org/">Sphinx {{ sphinx_version }}</a>
|
|
& <a href="https://github.com/bitprophet/alabaster">Alabaster {{ alabaster_version }}</a>
|
|
{% endif %}
|
|
{%- if show_source and has_source and sourcename %}
|
|
{% if show_copyright or theme_show_powered_by %}|{% endif %}
|
|
<a href="{{ pathto('_sources/' + sourcename, true)|e }}"
|
|
rel="nofollow">{{ _('Page source') }}</a>
|
|
{%- endif %}
|
|
</div>
|
|
|
|
{% if theme_github_banner|lower != 'false' %}
|
|
<a href="https://github.com/{{ theme_github_user }}/{{ theme_github_repo }}" class="github">
|
|
<img style="position: absolute; top: 0; right: 0; border: 0;" src="{{ pathto('_static/' ~ theme_github_banner, 1) if theme_github_banner|lower != 'true' else 'https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png' }}" alt="Fork me on GitHub" class="github"/>
|
|
</a>
|
|
{% endif %}
|
|
|
|
<!-- 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:true
|
|
});
|
|
} 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 -->
|
|
|
|
{%- endblock %}
|