{% set pet_social_enabled = ENGINEERING_THEME_ENABLE_SOCIAL_METADATA | default(true) %}
{% set pet_social_description = ENGINEERING_THEME_META_DESCRIPTION | default('', true) %}
{% if pet_content and pet_content.summary | default('') %}
{% set pet_social_description = pet_content.summary | striptags | trim %}
{% endif %}
{% set pet_social_image = ENGINEERING_THEME_SOCIAL_IMAGE | default('', true) %}
{% set pet_social_image_valid = pet_social_image is string and (pet_social_image.startswith('https://') or pet_social_image.startswith('http://')) %}
{% if pet_social_enabled and pet_document_title and pet_canonical_url %}
{% if pet_social_description %}{% endif %}
{% if pet_social_image_valid %}{% endif %}
{% if pet_social_description %}{% endif %}
{% if pet_social_image_valid %}{% endif %}
{% if article is defined and article.date | default(none) %}{% endif %}
{% if article is defined and article.modified | default(none) %}{% endif %}
{% endif %}