mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 01:54:55 +00:00
361a27485d
* update presentations * CLICKHOUSE-2936: redirect from clickhouse.yandex.ru and clickhouse.yandex.com * update submodule * lost files * CLICKHOUSE-2981: prefer sphinx docs over original reference * CLICKHOUSE-2981: docs styles more similar to main website + add flags to switch language links * update presentations * Less confusing directory structure (docs -> doc/reference/) * Minify sphinx docs too * Website release script: fail fast + pass docker hash on deploy * Do not underline links in docs * shorter * cleanup docker images * tune nginx config * CLICKHOUSE-3043: get rid of habrastorage links * Lost translation * CLICKHOUSE-2936: temporary client-side redirect * behaves weird in test * put redirect back * CLICKHOUSE-3047: copy docs txts to public too * move to proper file * remove old pages to avoid confusion * Remove reference redirect warning for now * Refresh README.md * Yellow buttons in docs * Use svg flags instead of unicode ones in docs * fix test website instance * Put flags to separate files * wrong flag * Copy Yandex.Metrica introduction from main page to docs * Yet another home page structure change, couple new blocks (CLICKHOUSE-3045) * Update Contacts section * CLICKHOUSE-2849: more detailed legal information * CLICKHOUSE-2978 preparation - split by files * More changes in Contacts block * Tune texts on index page * update presentations * One more benchmark * Add usage sections to index page, adapted from slides * Get the roadmap started, based on slides from last ClickHouse Meetup * CLICKHOUSE-2977: some rendering tuning * Get rid of excessive section in the end of getting started * Make headers linkable * CLICKHOUSE-2981: links to editing reference - https://github.com/yandex/ClickHouse/issues/849 * CLICKHOUSE-2981: fix mobile styles in docs * Ban crawling of duplicating docs * Open some external links in new tab * Ban old docs too * Lots of trivial fixes in english docs * Lots of trivial fixes in russian docs * Remove getting started copies in markdown * Add Yandex.Webmaster * Fix some sphinx warnings * More warnings fixed in english docs * More sphinx warnings fixed * Add code-block:: text * More code-block:: text * These headers look not that well * Better switch between documentation languages * merge use_case.rst into ya_metrika_task.rst * Edit the agg_functions.rst texts * Add lost empty lines * Lost blank lines * Add new logo sizes * update presentations * Next step in migrating to new documentation * Fix all warnings in en reference * Fix all warnings in ru reference * Re-arrange existing reference * Move operation tips to main reference * Fix typos noticed by milovidov@ * Get rid of zookeeper.md * Looks like duplicate of tutorial.html * Fix some mess with html tags in tutorial * No idea why nobody noticed this before, but it was completely not clear whet to get the data * Match code block styling between main and tutorial pages (in favor of the latter) * Get rid of some copypaste in tutorial * Normalize header styles * Move example_datasets to sphinx * Move presentations submodule to website * Move and update README.md * No point in duplicating articles from habrahabr here * Move development-related docs as is for now * doc/reference/ -> docs/ (to match the URL on website) * Adapt links to match the previous commit * Adapt development docs to rst (still lacks translation and strikethrough support) * clean on release * blacklist presentations in gulp * strikethrough support in sphinx * just copy development folder for now * fix weird introduction in style article * Style guide translation (WIP) * Finish style guide translation to English * gulp clean separately * Update year in LICENSE * Initial CONTRIBUTING.md * Fix remaining links to old docs in tutorial * Some tutorial fixes * Typo * Another typo * Update list of authors from yandex-team accoding to git log * Fix diff with master * couple fixes in en what_is_clickhouse.rst * Try different link to blog in Russian * Swap words * Slightly larger line height * CLICKHOUSE-3089: disable hyphenation in docs * update presentations * Fix copying of txt files * update submodule * CLICKHOUSE-3108: fix overflow issues in mobile version * Less weird tutorial header in mobile version * CLICKHOUSE-3073: skip sourcemaps by default * CLICKHOUSE-3067: rename item in docs navigation * fix list markup * CLICKHOUSE-3067: some documentation style tuning * CLICKHOUSE-3067: less laggy single page documentation * update presentations * YQL-3278: add some links to ClickHouse Meetup in Berlin on October 5, 2017 * Add "time series" keyword * Switch link to next event * Switch link to next event #2 * smaller font * Remove Palo Alto link * Add link to Success stories list * better title * Update index.html * Update index.html * Do not expect gulp in $PATH * Add link to Beijing meetup * ignore presentations * introduce requirements.txt * Apply hacks by bayonet@ using monkey patching * Simplify and fix patching of "single" docs on Mac OS (it still has a bug on chunk borders though) * remove hidden symbol * s/2016–2017/2016–2018/g * Add some place to put virtualenv * mkdocs was missing from requirements.txt * This way it hurts eyes less * Change header layout + add flags * yandex_fonts.css -> custom.css * Larger docs logo * Shorter link * Link to home from logo * Borrow some more styles from main page * Tune some links * Remove shadow * Add header border * Header font * Better flag margin * Improve single page mode * Fix search results hover * Fix some MarkDown errors * Silence useless error * Get rid of index.html's * Enable syntax highlight * Fix link label in ru * More style fixes in documentation scripts
205 lines
8.6 KiB
HTML
205 lines
8.6 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">
|
|
<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.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 }}">
|
|
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-2.2.1">
|
|
{% 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 %}
|
|
<title>{{ page.title }} - {{ config.site_name }}</title>
|
|
{% else %}
|
|
<title>{{ config.site_name }}</title>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block styles %}
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.ac64251e.css">
|
|
{% if palette.primary or palette.accent %}
|
|
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-palette.792431c1.css">
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block libs %}
|
|
<script src="{{ base_url }}/assets/javascripts/modernizr.1aa3b519.js"></script>
|
|
{% 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 }}">
|
|
{% endfor %}
|
|
{% block extrahead %}{% endblock %}
|
|
</head>
|
|
{% if palette.primary or palette.accent %}
|
|
{% set primary = palette.primary | replace(" ", "-") | lower %}
|
|
{% set accent = palette.accent | replace(" ", "-") | lower %}
|
|
{% if palette.primary and palette.accent %}
|
|
<body data-md-color-primary="{{ primary }}" data-md-color-accent="{{ accent }}">
|
|
{% elif palette.primary %}
|
|
<body data-md-color-primary="{{ primary }}">
|
|
{% elif palette.accent %}
|
|
<body data-md-color-accent="{{ accent }}">
|
|
{% endif %}
|
|
{% else %}
|
|
<body>
|
|
{% 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="navigation">
|
|
<div class="md-sidebar__scrollwrap">
|
|
<div class="md-sidebar__inner">
|
|
{% include "partials/nav.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% if page.toc %}
|
|
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
|
|
<div class="md-sidebar__scrollwrap">
|
|
<div class="md-sidebar__inner">
|
|
{% include "partials/toc.html" %}
|
|
</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"></a>
|
|
{% else %}
|
|
{% if page.edit_url %}
|
|
<a href="{{ page.edit_url }}" title="{{ lang.t('edit.link.title') }}" class="md-icon md-content__icon"></a>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if not "\x3ch1" in page.content %}
|
|
<h1>{{ page.title | default(config.site_name, true)}}</h1>
|
|
{% endif %}
|
|
{{ page.content }}
|
|
{% 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">
|
|
{{ 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 %}
|
|
<script src="{{ base_url }}/assets/javascripts/application.5165553b.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 > 1 %}
|
|
<script src="{{ path }}/lunr.multi.js"></script>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
<script>app.initialize({version:"{{ mkdocs_version }}",url:{base:"{{ base_url }}"}})</script>
|
|
{% for path in extra_javascript %}
|
|
<script src="{{ path }}"></script>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% block analytics %}
|
|
{% if config.google_analytics %}
|
|
{% include "partials/integrations/analytics.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|