templates/layout/head/meta.html.twig line 1

Open in your IDE?
  1. {# pagename #}
    {% set pagename = pimcore_website_config('pageName', null, app.request.locale) %}
    
    {# author #}
    {% set author = pimcore_website_config('author', null, app.request.locale) %}
    
    {# og fallback image #}
    {% set ogImage = pimcore_website_config('ogImage', null, app.request.locale) %}
    
    {# author #}
    <meta name="author" content="{{ author }}">
    
    {# publisher #}
    <meta name="publisher" content="{{ author }}">
    
    {# news detail #}
    {% if newsDetail is defined and newsDetail %}
        {{ include('layout/head/meta/news-detail.html.twig') }}
    
    {# jobs detail #}
    {% elseif jobsDetail is defined and jobsDetail %}    
        {{ include('layout/head/meta/jobs-detail.html.twig') }}
    
    {# document #}
    {% else %}
        {{ include('layout/head/meta/document.html.twig') }}
    {% endif %}