mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
4c8a1427d3
I've changed the type of the "share-image" files from PNG to JPG
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<meta content="website" property="og:type">
|
|
<meta content="{{ site.name }}" property="og:site_name">
|
|
|
|
{% if page.title %}
|
|
<meta content="{{ page.title }} • • {{ site.name }}" property="og:title">
|
|
{% else %}
|
|
<meta content="{{ site.name }} • • {{ site.description }}" property="og:title">
|
|
{% endif %}
|
|
|
|
{% if page.description %}
|
|
<meta content="{{ page.description }}" property="og:description">
|
|
{% elsif page.front_page %}
|
|
<meta content="{{ site.description }}" property="og:description">
|
|
{% else %}
|
|
<meta content="{{ page.excerpt | strip_html | strip_newlines }}" property="og:description">
|
|
{% endif %}
|
|
|
|
{% if page.url %}
|
|
<meta content="{{ site.url}}{{ page.url | replace:'index.html','' }}" property="og:url">
|
|
{% endif %}
|
|
|
|
{% if page.date %}
|
|
<meta content="{{ page.date | date_to_xmlschema }}" property="article:published_time">
|
|
{% endif %}
|
|
|
|
{% if page.image %}
|
|
<meta content="{{ site.url }}/assets/img/{{ page.image }}" property="og:image">
|
|
{% else %}
|
|
<meta content="{{ site.url }}/assets/img/share-image.jpg" property="og:image">
|
|
{% endif %}
|
|
|
|
{% if page.categories %}
|
|
{% for category in page.categories limit:1 %}
|
|
<meta content="{{ category }}" property="article:section">
|
|
{% endfor %}
|
|
{% endif %}
|