|
6 | 6 |
|
7 | 7 | {% block site_meta %}
|
8 | 8 | {{ super() }}
|
9 |
| -<metaproperty="og:site_name"content="PostgresML"> |
| 9 | +<metaproperty="og:site_name"content="PostgresML"/> |
10 | 10 | {% if page.meta and page.meta.title %}
|
11 |
| -<metaproperty="og:title"content="{{ page.meta.title }}"> |
| 11 | +<metaproperty="og:title"content="{{ page.meta.title }}"/> |
12 | 12 | {% elif page.title %}
|
13 |
| -<metaproperty="og:title"content="{{ page.title | striptags }}"> |
| 13 | +<metaproperty="og:title"content="{{ page.title | striptags }}"/> |
14 | 14 | {% endif %}
|
15 | 15 | {% if page.meta and page.meta.type %}
|
16 |
| -<metaproperty="og:type"content="{{ page.meta.type }}"> |
| 16 | +<metaproperty="og:type"content="{{ page.meta.type }}"/> |
17 | 17 | {% endif %}
|
18 | 18 | {% if page.meta and page.meta.description %}
|
19 |
| -<metaproperty="og:description"content="{{ page.meta.description }}"> |
| 19 | +<metaproperty="og:description"content="{{ page.meta.description }}"/> |
20 | 20 | {% elif config.site_description %}
|
21 |
| -<metaproperty="og:description"content="{{ config.site_description }}"> |
| 21 | +<metaproperty="og:description"content="{{ config.site_description }}"/> |
22 | 22 | {% endif %}
|
23 | 23 | {% if page.meta and page.meta.author %}
|
24 |
| -<metaproperty="og:author"content="{{ page.meta.author }}"> |
| 24 | +<metaproperty="og:author"content="{{ page.meta.author }}"/> |
25 | 25 | {% endif %}
|
26 | 26 | {% if page.meta and page.meta.image %}
|
27 |
| -<metaproperty="og:image"content="{{ page.meta.image }}"> |
| 27 | +<metaproperty="og:image"content="{{ page.meta.image }}"/> |
28 | 28 | {% endif %}
|
29 | 29 | {% if page.meta and page.meta.image_alt %}
|
30 |
| -<metaproperty="og:image:alt"content="{{ page.meta.image_alt }}"> |
| 30 | +<metaproperty="og:image:alt"content="{{ page.meta.image_alt }}"/> |
31 | 31 | {% endif %}
|
32 | 32 | {% if page.meta and page.meta.type %}
|
33 |
| -<metaproperty="og:type"content="{{ page.meta.type }}"> |
| 33 | +<metaproperty="og:type"content="{{ page.meta.type }}"/> |
34 | 34 | {% else %}
|
35 |
| -<metaproperty="og:type"content="article"> |
| 35 | +<metaproperty="og:type"content="article"/> |
36 | 36 | {% endif %}
|
37 | 37 | {% endblock %}
|
38 | 38 |
|
|