{% set prefetch_items = [
    ('/docs/en/', 'document')
] %}

{% extends "templates/base.html" %}

{% block extra_meta %}
{% 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"],
"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",
  "name": "ClickHouse, Inc.",
  "logo": {
    "@type": "ImageObject",
    "url": "https://clickhouse.com/images/logo-400x240.png",
    "width": 400,
    "height": 240
  }
},
"copyrightYear": 2016,
"mainEntityOfPage": {
  "@type": "WebSite",
  "@id": "https://clickhouse.com"
},
"offers": {
  "@type": "Offer",
  "price": "0",
  "priceCurrency": "USD"
}
}</script>
{% endblock %}

{% block banner %}

{% include "templates/global/banner.html" %}

{% endblock %}

{% block nav %}

{% include "templates/global/nav.html" %}

{% endblock %}

{% block content %}

{% include "templates/index/hero.html" %}
{% include "templates/index/why.html" %}
{% include "templates/index/success.html" %}

{% if false %}
    {% include "templates/index/pullquote.html" %}
{% endif %}

{% include "templates/index/performance.html" %}
{% include "templates/index/quickstart.html" %}
{% include "templates/index/community.html" %}

{% include "templates/global/newsletter.html" %}
{% include "templates/global/github_stars.html" %}
{% endblock %}