<meta property="og:site_name" content="{{ site_name }}"/>
{% if pagetitle_before_sitename %}
<meta property="og:title" content="{% if _title is not empty %}{{ _title|raw }} • {% endif %}{{ site_name }}"/>
{% else %}
<meta property="og:title" content="{{ site_name }}{% if _title is not empty %} • {{ _title|raw }}{% endif %}"/>
{% endif %}
{% if _params is defined %}
<meta property="og:description" content="{{ (_params is defined and _params.description is defined ? _params.description : meta.description) | enhancedStriptags }}"/>
<meta name="description" content="{{ (_params is defined and _params.description is defined ? _params.description : meta.description) | enhancedStriptags }}"/>
<meta property="og:image" content="{{ absolute_url(_params is defined and _params.image is defined ? _params.image : meta.image) }}"/>
<meta property="og:url" content="{{ absolute_url(_params is defined and _params.url is defined ? _params.url : ( app.request.attributes.get('_route') ? path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) : '' ) ) }}" />
<meta name="author" content="{{ _params is defined and _params.author is defined ? _params.author : meta.author }}">
{% endif%}
{% if app_env | lower is same as('dev') or noIndexIfRoute(app.request.get('_route')) %}
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex">
{% endif %}