ClickHouse/website/templates/docs/ld_json.html
Ivan Blinkov 84a8b21df9
Adjust ld+json images, remove feather icons (#10843)
* [docs] adjust ld+json images

* rm feathericons
2020-05-12 17:17:26 +03:00

26 lines
768 B
HTML

{% if page and page.meta %}
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "TechArticle",
"headline": "{{ title }}",
"mainEntityOfPage": "{{ url or 'https://clickhouse.tech/' }}",
{% if page.meta.published_date %}"datePublished": "{{ page.meta.published_date.isoformat() }}",{% endif %}
{% if page.meta.modified_date %}"dateModified": "{{ page.meta.modified_date.isoformat() }}",{% endif %}
"image": "https://clickhouse.tech/images/logo-209x60.png",
"author": {
"@type": "Project",
"name": "ClickHouse"
},
"publisher": {
"@type": "Organization",
"name": "Yandex LLC",
"logo": {
"@type": "ImageObject",
"url": "https://clickhouse.tech/images/yandex.png",
"width": 163,
"height": 60
}
}
}</script>
{% endif %}