ClickHouse/website/company.html

54 lines
1.4 KiB
HTML
Raw Normal View History

2021-09-10 21:16:24 +00:00
{% set prefetch_items = [
('/docs/en/', 'document')
] %}
{% extends "templates/base.html" %}
{% block extra_meta %}
<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.tech/docs/en/",
"license": "https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE",
"applicationCategory": "https://schema.org/DeveloperApplication",
"applicationSubCategory": "Database Management System",
"copyrightHolder": {
"@type": "Organization",
"name": "Yandex LLC",
"logo": {
"@type": "ImageObject",
"url": "https://clickhouse.tech/images/yandex.png",
"width": 163,
"height": 60
}
},
"copyrightYear": 2016,
"mainEntityOfPage": {
"@type": "WebSite",
"@id": "https://clickhouse.tech"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}</script>
{% endblock %}
{% block content %}
{% include "templates/global/nav.html" %}
{% include "templates/company/hero.html" %}
{% include "templates/company/overview.html" %}
{% include "templates/company/leadership.html" %}
{% include "templates/company/team.html" %}
{% include "templates/company/press.html" %}
{% include "templates/company/contact.html" %}
{% include "templates/company/newsletter.html" %}
{% endblock %}