[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:
Ivan Blinkov 2020-05-21 00:01:18 +03:00 committed by GitHub
parent 07924f0ae1
commit ebef7b9a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

@ -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" %}

View File

@ -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 }}>