ClickHouse/website/index.html

71 lines
1.7 KiB
HTML
Raw Normal View History

{% set prefetch_items = [
('/docs/en/', 'document')
] %}
{% extends "templates/base.html" %}
{% block extra_meta %}
2021-09-19 21:10:13 +00:00
{% include "templates/common_fonts.html" %}
<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/",
"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.",
"logo": {
"@type": "ImageObject",
2021-09-19 20:38:31 +00:00
"url": "https://clickhouse.com/images/logo-400x240.png",
"width": 400,
"height": 240
}
},
"copyrightYear": 2016,
"mainEntityOfPage": {
"@type": "WebSite",
2021-09-19 20:38:31 +00:00
"@id": "https://clickhouse.com"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}</script>
{% endblock %}
{% block banner %}
{% include "templates/global/banner.html" %}
{% endblock %}
{% block nav %}
2021-09-10 18:54:37 +00:00
{% include "templates/global/nav.html" %}
{% endblock %}
{% block content %}
{% 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" %}
{% include "templates/index/quickstart.html" %}
{% 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" %}
{% endblock %}