chore: automated commit

This commit is contained in:
Allan Bowe
2021-07-04 15:33:21 +03:00
parent 2c45c99497
commit b8d04772b4
4 changed files with 16 additions and 3 deletions

View File

@ -13,7 +13,14 @@
{% set title = title ~ " - " ~ page.title | striptags %}
{% endif %}
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ title }}" />
{% if page and page.meta and page.meta.og_title %}
{% set og_title = page.meta.og_title %}
{% elif page %}
{% set og_title = 'Data Controller Documentation' %}
{% endif %}
<meta property="og:title" content="{{og_title}}">
<meta property="og:url" content="{{ page.canonical_url }}" />
{% if page and page.meta and page.meta.og_image %}
{% set og_image = page.meta.og_image %}