Update common_meta.html (#10338)

This commit is contained in:
Ivan Blinkov 2020-04-17 20:33:32 +03:00 committed by GitHub
parent a0d42eb6ff
commit d5a3a15e8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,24 @@
{% set description = description or _('ClickHouse is a fast open-source column-oriented database management system that allows generating analytical data reports in real-time using SQL queries') %}
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{% if title %}{{ title }}{% else %}{{ _('ClickHouse DBMS') }}{% endif %}</title>
<title>{% if title %}{{ title }}{% else %}{{ _('ClickHouse - fast open-source OLAP DBMS') }}{% endif %}</title>
<link rel="shortcut icon" href="/favicon.ico"/>
<meta property="og:title" content="{% if title %}{{ title }}{% else %}{{ _('ClickHouse DBMS') }}{% endif %}"/>
<meta property="og:description"
content="{% if description %}{{ description }}{% else %}{{ _('ClickHouse is an open source column-oriented database management system that allows generating analytical data reports in real time using SQL queries.') }}{% endif %}"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://clickhouse.tech/images/logo.png"/>
<meta property="og:description" content="{{ description }}"/>
<meta property="og:type" content="website" />
<meta property="og:image" content="https://clickhouse.tech/images/logo.png" />
<meta property="og:url" content="{{ page.abs_url or 'https://clickhouse.tech/' }}"/>
<meta property="twitter:title" content="{% if title %}{{ title }}{% else %}{{ _('ClickHouse DBMS') }}{% endif %}"/>
<meta name="description"
content="{% if description %}{{ description }}{% else %}{{ _('ClickHouse is an open source distributed column-oriented database management system that allows generating analytical data reports in real time using SQL queries. Сreated by Yandex ClickHouse manages extremely large volumes of data in a stable and sustainable manner.') }}{% endif %}"/>
<meta name="description" content="{{ description }}"/>
<meta name="keywords"
content="ClickHouse, DBMS, OLAP, relational, analytics, analytical, big data, open-source, SQL, web-analytics" />
content="ClickHouse, DBMS, OLAP, SQL, open-source, relational, analytics, analytical, Big Data, web-analytics" />
{% for prefetch_item in prefetch_items %}
<link rel="prefetch" href="{{ prefetch_item.0 }}" as="{{ prefetch_item.1 }}" />