forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (57 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{% 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 %}