mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
75 lines
2.8 KiB
HTML
75 lines
2.8 KiB
HTML
{# This file is an entrypoint for mkdocs theme, not an actual website page #}
|
|
|
|
{% set language = config.theme.language %}
|
|
{% set direction = config.theme.direction %}
|
|
{% set is_amp = config.extra.is_amp %}
|
|
{% set is_blog = config.extra.is_blog %}
|
|
{% set single_page = config.extra.single_page %}
|
|
{% set no_footer = True %}
|
|
{% set og_type = 'article' %}
|
|
|
|
{% if page and page.abs_url %}
|
|
{% set url = 'https://clickhouse.tech' + page.abs_url %}
|
|
{% endif %}
|
|
|
|
{% if page and page.canonical_url %}
|
|
{% set canonical_url = page.canonical_url %}
|
|
{% endif %}
|
|
|
|
{% if page and page.meta and page.meta.title %}
|
|
{% set title = page.meta.title %}
|
|
{% elif page and page.title and not page.is_homepage and (not page.title.startswith('hidden-')) %}
|
|
{% set title = page.title + ' | ' + config.site_name %}
|
|
{% elif page and page.title and not page.is_homepage and (not page.title.startswith('hidden-')) and page.ancestors %}
|
|
{% set title = (page.ancestors | first).title + ' | ' + config.site_name %}
|
|
{% else %}
|
|
{% set title = config.site_name %}
|
|
{% endif %}
|
|
{% set title = title.strip() %}
|
|
{% if page and page.content and not single_page %}
|
|
{% set description = page.content|striptags %}
|
|
{% set description = description.replace('¶','')[0:120] %}
|
|
{% endif %}
|
|
|
|
{% set data_version = 'master' %}
|
|
{% set data_single_page = 'true' if config.extra.single_page else 'false' %}
|
|
|
|
{% if is_amp %}
|
|
{% include "templates/docs/amp.html" %}
|
|
{% else %}
|
|
{% if not is_blog %}
|
|
{% set extra_html_attrs = 'data-version="' + data_version + '" data-single-page="' + data_single_page + '"' %}
|
|
{% set extra_body_attrs = 'data-spy="scroll" data-target="#toc" data-offset="80"' %}
|
|
{% else %}
|
|
{% set extra_body_attrs = 'class="blog"' %}
|
|
{% endif %}
|
|
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
{% if not is_blog %}
|
|
{% include "templates/docs/nav.html" %}
|
|
<div class="container-fluid{% if direction == 'rtl' %} text-right{% endif %}">
|
|
<div class="row justify-content-end{% if not single_page %} justify-content-xl-center{% endif %}">
|
|
{% include "templates/docs/sidebar.html" %}
|
|
{% include "templates/docs/content.html" %}
|
|
{% if not config.extra.single_page %}
|
|
{% include "templates/docs/toc.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
{% include "templates/blog/nav.html" %}
|
|
<div class="container">
|
|
<div class="row">
|
|
{% include "templates/blog/content.html" %}
|
|
</div>
|
|
</div>
|
|
{% if page and page.meta.is_index %}
|
|
{% include "templates/index/community.html" %}
|
|
{% include "templates/blog/footer.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
{% endif %}
|