mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
22f51f103c
* CLICKHOUSE-4063: less manual html @ index.md * CLICKHOUSE-4063: recommend markdown="1" in README.md * CLICKHOUSE-4003: manually purge custom.css for now * CLICKHOUSE-4064: expand <details> before any print (including to pdf) * CLICKHOUSE-3927: rearrange interfaces/formats.md a bit * CLICKHOUSE-3306: add few http headers * Remove copy-paste introduced in #3392 * Hopefully better chinese fonts #3392 * get rid of tabs @ custom.css * Apply comments and patch from #3384 * Add jdbc.md to ToC and some translation, though it still looks badly incomplete * minor punctuation * Add some backlinks to official website from mirrors that just blindly take markdown sources * Do not make fonts extra light * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's//g' {} * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's/ sql/g' {} * Remove outdated stuff from roadmap.md * Not so light font on front page too * Refactor Chinese formats.md to match recent changes in other languages * Update some links on front page * Remove some outdated comment * Add twitter link to front page * More front page links tuning * Add Amsterdam meetup link * Smaller font to avoid second line * Add Amsterdam link to README.md * Proper docs nav translation * Back to 300 font-weight except Chinese * fix docs build * Update Amsterdam link
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<nav class="md-nav md-nav--primary" data-md-level="0">
|
|
{% if not config.extra.single_page %}
|
|
<label class="md-nav__title md-nav__title--site" for="drawer">
|
|
{{ config.site_name }}
|
|
</label>
|
|
|
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
{% for nav_item in nav %}
|
|
{% set path = "nav-" + loop.index | string %}
|
|
{% set level = 1 %}
|
|
{% include "partials/nav-item.html" %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<ul id="md-extra-nav" class="md-nav__list" data-md-scrollfix>
|
|
<li class="md-nav__item md-nav__item--active">
|
|
{% if config.extra.single_page %}
|
|
<a href="{{ base_url }}" class="md-nav__link md-nav__link--active">{{ lang.t("nav.multi_page") }}</a>
|
|
{% else %}
|
|
<a href="{{ base_url }}/single/" class="md-nav__link md-nav__link--active">{{ lang.t("nav.single_page") }}</a>
|
|
{% endif %}
|
|
</li>
|
|
<li class="md-nav__item md-nav__item--active">
|
|
<a href="{{ base_url }}/single/clickhouse_{{ config.theme.language }}.pdf" class="md-nav__link md-nav__link--active">{{ lang.t("nav.pdf") }}</a>
|
|
</li>
|
|
{% if config.repo_url %}
|
|
<li class="md-nav__item md-nav__item--active">
|
|
<a href="{{ config.repo_url }}" rel="external nofollow" target="_blank" class="md-nav__link">
|
|
{{ lang.t("nav.source") }}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<li class="md-nav__item md-nav__item--active">
|
|
<span id="md-sidebar-flags" class="md-nav__link">
|
|
{% include "partials/flags.html" %}
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</nav>
|