mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
0b4019becb
* workers moved to separate repo https://github.com/ClickHouse/clickhouse-website-worker * support prefetch tag * Prefetch docs from front page + async load of secondary images
24 lines
715 B
HTML
24 lines
715 B
HTML
{% set prefetch_items = [
|
|
('/docs/en/', 'document')
|
|
] %}
|
|
|
|
{% extends "templates/base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "templates/index/nav.html" %}
|
|
{% include "templates/index/hero.html" %}
|
|
{% include "templates/index/events.html" %}
|
|
{% include "templates/index/performance.html" %}
|
|
{% include "templates/index/why.html" %}
|
|
{% include "templates/index/success.html" %}
|
|
{% include "templates/index/efficient.html" %}
|
|
{% include "templates/index/rich.html" %}
|
|
{% include "templates/index/features.html" %}
|
|
{% include "templates/index/scalable.html" %}
|
|
{% include "templates/index/use.html" %}
|
|
{% include "templates/index/quickstart.html" %}
|
|
{% include "templates/index/community.html" %}
|
|
|
|
{% endblock %}
|