mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
[website] ld+json for the front page (#11077)
* [website] ld+json for the front page * Update index.html * Update index.html
This commit is contained in:
parent
07924f0ae1
commit
ebef7b9a85
@ -4,6 +4,40 @@
|
||||
|
||||
{% 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/index/nav.html" %}
|
||||
|
@ -2,6 +2,7 @@
|
||||
<html lang="{{ language or 'en'}}" {{ extra_html_attrs }}>
|
||||
<head>
|
||||
{% include "templates/common_meta.html" %}
|
||||
{% block extra_meta %}{% endblock %}
|
||||
{% include "templates/common_css.html" %}
|
||||
</head>
|
||||
<body dir="{{ direction or 'ltr' }}" {{ extra_body_attrs }}>
|
||||
|
Loading…
Reference in New Issue
Block a user