templates/common/campaign/_sharing_meta.html.twig line 1

Open in your IDE?
  1. <meta property="og:url" content="{{ page_url }}" />
  2. <meta property="og:type" content="article" />
  3. <meta property="og:title" content="{{ share_text }}" />
  4. <meta property="og:description" content="{{ page_dicription }}" />
  5. <meta name="twitter:url" content="{{ page_url }}">
  6. {% if avatar is defined and avatar %}
  7.     <meta name="twitter:image" content="{{ absolute_url(avatar) }}">
  8.     <meta property="og:image" content="{{ absolute_url(avatar) }}" />
  9. {% else %}
  10.     <img class="logo" src="{{ asset('build/images/logo.svg') }}" alt="logo"/>
  11.     <meta name="twitter:image" content="{{ absolute_url(asset_url) }}">
  12.     <meta property="og:image" content="{{ absolute_url(asset_url) }}" />
  13. {% endif %}