2020-04-10 13:56:25 +00:00
|
|
|
{% set prefetch_items = [
|
|
|
|
('/docs/en/', 'document')
|
|
|
|
] %}
|
|
|
|
|
2020-03-13 19:35:03 +00:00
|
|
|
{% extends "templates/base.html" %}
|
|
|
|
|
2020-05-20 21:01:18 +00:00
|
|
|
{% block extra_meta %}
|
2021-09-19 21:10:13 +00:00
|
|
|
{% include "templates/common_fonts.html" %}
|
2020-05-20 21:01:18 +00:00
|
|
|
<script type="application/ld+json">{
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
"@type": "SoftwareApplication",
|
|
|
|
"name": "ClickHouse",
|
|
|
|
"operatingSystem": ["Linux", "FreeBSD", "Mac OS X"],
|
|
|
|
"featureList": ["SQL", "columnar storage", "fault-tolerance", "distributed queries"],
|
2021-09-19 20:38:31 +00:00
|
|
|
"softwareHelp": "https://clickhouse.com/docs/en/",
|
2020-05-20 21:01:18 +00:00
|
|
|
"license": "https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE",
|
|
|
|
"applicationCategory": "https://schema.org/DeveloperApplication",
|
|
|
|
"applicationSubCategory": "Database Management System",
|
|
|
|
"copyrightHolder": {
|
|
|
|
"@type": "Organization",
|
2021-09-19 20:38:31 +00:00
|
|
|
"name": "ClickHouse, Inc.",
|
2020-05-20 21:01:18 +00:00
|
|
|
"logo": {
|
|
|
|
"@type": "ImageObject",
|
2021-09-19 20:38:31 +00:00
|
|
|
"url": "https://clickhouse.com/images/logo-400x240.png",
|
|
|
|
"width": 400,
|
|
|
|
"height": 240
|
2020-05-20 21:01:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"copyrightYear": 2016,
|
|
|
|
"mainEntityOfPage": {
|
|
|
|
"@type": "WebSite",
|
2021-09-19 20:38:31 +00:00
|
|
|
"@id": "https://clickhouse.com"
|
2020-05-20 21:01:18 +00:00
|
|
|
},
|
|
|
|
"offers": {
|
|
|
|
"@type": "Offer",
|
|
|
|
"price": "0",
|
|
|
|
"priceCurrency": "USD"
|
|
|
|
}
|
|
|
|
}</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-09-13 22:39:17 +00:00
|
|
|
{% block nav %}
|
2020-03-13 19:35:03 +00:00
|
|
|
|
2021-09-10 18:54:37 +00:00
|
|
|
{% include "templates/global/nav.html" %}
|
|
|
|
|
2021-09-13 22:39:17 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-03-13 19:35:03 +00:00
|
|
|
{% include "templates/index/hero.html" %}
|
|
|
|
{% include "templates/index/why.html" %}
|
|
|
|
{% include "templates/index/success.html" %}
|
2021-09-10 21:54:19 +00:00
|
|
|
|
|
|
|
{% if false %}
|
2021-09-19 16:50:09 +00:00
|
|
|
{% include "templates/index/pullquote.html" %}
|
2021-09-10 21:54:19 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2021-09-08 23:07:39 +00:00
|
|
|
{% include "templates/index/performance.html" %}
|
2020-03-13 19:35:03 +00:00
|
|
|
{% include "templates/index/quickstart.html" %}
|
2020-03-14 20:02:57 +00:00
|
|
|
{% include "templates/index/community.html" %}
|
2021-09-10 21:54:19 +00:00
|
|
|
|
|
|
|
{% include "templates/global/newsletter.html" %}
|
2021-09-20 06:52:51 +00:00
|
|
|
{% include "templates/global/github_stars.html" %}
|
2020-03-13 19:35:03 +00:00
|
|
|
{% endblock %}
|