mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
319 lines
13 KiB
HTML
319 lines
13 KiB
HTML
{% import "partials/language.html" as lang with context %}
|
|
{% set feature = config.theme.feature %}
|
|
{% set palette = config.theme.palette %}
|
|
{% set font = config.theme.font %}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ lang.t('language') }}" class="no-js" data-version="{{ config.extra.version_prefix or 'master' }}" data-single-page="{% if config.extra.single_page %}true{% else %}false{% endif %}">
|
|
<head>
|
|
{% block site_meta %}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
{% if page and page.meta and page.meta.description %}
|
|
<meta name="description" content="{{ page.meta.description }}">
|
|
{% elif config.site_description %}
|
|
<meta name="description" content="{{ config.site_description }}">
|
|
{% endif %}
|
|
{% if page.canonical_url %}
|
|
<link rel="canonical" href="{{ page.canonical_url }}">
|
|
{% endif %}
|
|
{% if page and page.meta and page.meta.author %}
|
|
<meta name="author" content="{{ page.meta.author | first }}">
|
|
{% elif config.site_author %}
|
|
<meta name="author" content="{{ config.site_author }}">
|
|
{% endif %}
|
|
{% for key in [
|
|
"clipboard.copy",
|
|
"clipboard.copied",
|
|
"search.language",
|
|
"search.pipeline.stopwords",
|
|
"search.pipeline.trimmer",
|
|
"search.result.none",
|
|
"search.result.one",
|
|
"search.result.other",
|
|
"search.tokenizer"
|
|
] %}
|
|
<meta name="lang:{{ key }}" content="{{ lang.t(key) }}">
|
|
{% endfor %}
|
|
<link rel="shortcut icon" href="{{ base_url }}/{{ config.theme.favicon }}">
|
|
{% endblock %}
|
|
{% block htmltitle %}
|
|
{% if page and page.meta and page.meta.title %}
|
|
<title>{{ page.meta.title }}</title>
|
|
{% elif page and page.title and not page.is_homepage and page.title != 'hidden' %}
|
|
<title>{{ page.title }} - {{ config.site_name }}</title>
|
|
{% elif page and page.title and not page.is_homepage and page.title == 'hidden' and page.ancestors %}
|
|
<title>{{ (page.ancestors | first).title }} - {{ config.site_name }}</title>
|
|
{% else %}
|
|
<title>{{ config.site_name }}</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css" />
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.2a88008a.css">
|
|
{% if palette.primary or palette.accent %}
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-palette.792431c1.css">
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block fonts %}
|
|
{% if font != false %}
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{
|
|
font.text | replace(' ', '+') + ':300,400,400i,700|' +
|
|
font.code | replace(' ', '+')
|
|
}}">
|
|
<style>body,input{font-family:"{{ font.text }}","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"{{ font.code }}","Courier New",Courier,monospace}</style>
|
|
{% endif %}
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
{% endblock %}
|
|
{% for path in extra_css %}
|
|
<link rel="stylesheet" href="{{ path }}?{{ config.theme.extra.now }}">
|
|
{% endfor %}
|
|
{% block extrahead %}{% endblock %}
|
|
</head>
|
|
{% set direction = config.theme.direction %}
|
|
{% if palette.primary or palette.accent %}
|
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
|
<body dir="{{ direction }}" data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}" class="md-lang-{{ config.theme.language }}">
|
|
{% else %}
|
|
<body dir="{{ direction }}" class="md-lang-{{ config.theme.language }}">
|
|
{% endif %}
|
|
<svg class="md-svg">
|
|
<defs>
|
|
{% set platform = config.extra.repo_icon or config.repo_url %}
|
|
{% if "github" in platform %}
|
|
{% include "assets/images/icons/github.a4034fb1.svg" %}
|
|
{% elif "gitlab" in platform %}
|
|
{% include "assets/images/icons/gitlab.d80e5efc.svg" %}
|
|
{% elif "bitbucket" in platform %}
|
|
{% include "assets/images/icons/bitbucket.4ebea66e.svg" %}
|
|
{% endif %}
|
|
</defs>
|
|
</svg>
|
|
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="drawer">
|
|
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="search">
|
|
<label class="md-overlay" data-md-component="overlay" for="drawer"></label>
|
|
{% block header %}
|
|
{% include "partials/header.html" %}
|
|
{% endblock %}
|
|
<div class="md-container">
|
|
{% block hero %}
|
|
{% if page and page.meta and page.meta.hero %}
|
|
{% include "partials/hero.html" with context %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% if feature.tabs %}
|
|
{% include "partials/tabs.html" %}
|
|
{% endif %}
|
|
<main class="md-main">
|
|
<div class="md-main__inner md-grid" data-md-component="container">
|
|
{% block site_nav %}
|
|
{% if nav %}
|
|
<div class="md-sidebar md-sidebar--primary" data-md-component="{% if not config.extra.single_page %}navigation{% else %}toc{% endif %}">
|
|
<div class="md-sidebar__scrollwrap">
|
|
<div class="md-sidebar__inner">
|
|
{% if not config.extra.single_page %}
|
|
{% include "partials/nav.html" %}
|
|
{% else %}
|
|
{% include "partials/toc.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if page.toc %}
|
|
<div class="md-sidebar md-sidebar--secondary" data-md-component="{% if not config.extra.single_page %}toc{% else %}navigation{% endif %}">
|
|
<div class="md-sidebar__scrollwrap">
|
|
<div class="md-sidebar__inner">
|
|
{% if not config.extra.single_page %}
|
|
{% include "partials/toc.html" %}
|
|
{% else %}
|
|
{% include "partials/nav.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
<div class="md-content">
|
|
<article class="md-content__inner md-typeset">
|
|
{% block content %}
|
|
{% if config.extra.single_page %}
|
|
<a href="{{ config.repo_url }}tree/master/docs" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon" rel="external nofollow"></a>
|
|
{% else %}
|
|
{% if page.edit_url %}
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon" rel="external nofollow"></a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if not "\x3ch1" in page.content %}
|
|
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
|
{% endif %}
|
|
<div id="content">
|
|
{% if not config.extra.single_page %}
|
|
{{ page.content }}
|
|
{% endif %}
|
|
</div>
|
|
{% block source %}
|
|
{% if page and page.meta and page.meta.source %}
|
|
<h2 id="__source">{{ lang.t("meta.source") }}</h2>
|
|
{% set path = page.meta.path | default([""]) %}
|
|
{% set file = page.meta.source %}
|
|
<a href="{{ [config.repo_url, path, file] | join('/') }}" title="{{ file }}" class="md-source-file" rel="external nofollow">
|
|
{{ file }}
|
|
</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% endblock %}
|
|
{% block disqus %}
|
|
{% if config.extra.disqus and not page.is_homepage %}
|
|
<h2 id="__comments">{{ lang.t("meta.comments") }}</h2>
|
|
{% include "partials/integrations/disqus.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
</article>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{% block footer %}
|
|
{% include "partials/footer.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
{% block scripts %}
|
|
{% block libs %}
|
|
<script src="{{ base_url }}/assets/javascripts/modernizr.js"></script>
|
|
{% endblock %}
|
|
<script src="{{ base_url }}/assets/javascripts/application.js"></script>
|
|
{% if lang.t("search.language") != "en" %}
|
|
{% set languages = lang.t("search.language").split(",") %}
|
|
{% if languages | length and languages[0] != "" %}
|
|
{% set path = base_url + "/assets/javascripts/lunr" %}
|
|
<script src="{{ path }}/lunr.stemmer.support.js"></script>
|
|
{% for language in languages | map("trim") %}
|
|
{% if language != "en" %}
|
|
{% if language == "jp" %}
|
|
<script src="{{ path }}/tinyseg.js"></script>
|
|
{% endif %}
|
|
<script src="{{ path }}/lunr.{{ language }}.js"></script>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if languages | length > 0 %}
|
|
<script src="{{ path }}/lunr.multi.js"></script>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% for path in extra_javascript %}
|
|
<script src="{{ path }}"></script>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% block analytics %}
|
|
{% if config.google_analytics %}
|
|
{% include "partials/integrations/analytics.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
<script type="text/javascript">
|
|
function ready(callback){
|
|
if (document.readyState != 'loading') {
|
|
callback();
|
|
} else if (document.addEventListener) {
|
|
document.addEventListener('DOMContentLoaded', callback);
|
|
} else document.attachEvent('onreadystatechange', function() {
|
|
if (document.readyState == 'complete') {
|
|
callback();
|
|
}
|
|
});
|
|
}
|
|
ready(function () {
|
|
var i;
|
|
{% if config.extra.single_page and page.content %}
|
|
document.getElementById("content").innerHTML = {{ page.content|tojson|safe }};
|
|
document.getElementsByClassName('md-footer')[0].style.display = 'block';
|
|
{% endif %}
|
|
app.initialize({
|
|
version: "{{ mkdocs_version }}",
|
|
url: {
|
|
base: "{{ base_url }}"
|
|
}
|
|
});
|
|
var beforePrint = function() {
|
|
var details = document.getElementsByTagName("details");
|
|
for (i = 0; i < details.length; ++i) {
|
|
details[i].open = 1;
|
|
}
|
|
};
|
|
if (window.matchMedia) {
|
|
window.matchMedia('print').addListener(function(q) {
|
|
if (q.matches) {
|
|
beforePrint();
|
|
}
|
|
});
|
|
}
|
|
window.onbeforeprint = beforePrint;
|
|
|
|
var name = window.location.hostname.split('.')[0];
|
|
var feedback_address = name + '-feedback' + '@yandex-team.ru';
|
|
var feedback_email = document.getElementsByClassName('feedback-email');
|
|
for (i = 0; i < feedback_email.length; i++) {
|
|
feedback_email[i].setAttribute('href', 'mailto:' + feedback_address);
|
|
feedback_email[i].innerHTML = feedback_address;
|
|
}
|
|
|
|
document.getElementById("releases-selector").addEventListener(
|
|
"change",
|
|
function() {
|
|
var target = window.location.href.split('docs')[0] + 'docs/';
|
|
if (this.value) {
|
|
target = target + this.value + '/';
|
|
}
|
|
window.location = target + '{{ config.theme.language }}';
|
|
}
|
|
)
|
|
});
|
|
</script>
|
|
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
|
<script type="text/javascript"> docsearch({
|
|
apiKey: 'e239649803024433599de47a53b2d416',
|
|
indexName: 'yandex_clickhouse',
|
|
inputSelector: '#md-search__input',
|
|
algoliaOptions: {
|
|
advancedSyntax: true,
|
|
clickAnalytics: true,
|
|
hitsPerPage: 25,
|
|
'facetFilters': ["lang:{{ lang.t('language') }}"]
|
|
},
|
|
debug: false
|
|
});
|
|
</script>
|
|
|
|
<!-- 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 not config.extra.single_page %}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 -->
|
|
</body>
|
|
</html>
|