templates/component/_meta_base.html.twig line 1

Open in your IDE?
  1. {% if noIndex is defined and noIndex == true %}
  2.   <meta name="robots" content="noindex" />
  3. {% else %}
  4.   <meta name="robots" content="index, follow" />
  5. {% endif %}
  6. {% if metaDescription is defined %}
  7.   <meta name="description" content="{{ metaDescription }}" />
  8. {% endif %}
  9. <meta property="og:type" content="website" />
  10. {% if metaDescription is defined %}
  11.   <meta property="og:description" content="  
  12.   {{ metaDescription }}" />
  13. {% endif %}
  14. {% if metaImg is defined %}
  15.   <meta property="og:image" content="{{ metaImg }}" />
  16. {% endif %}
  17. <meta property="twitter:card" content="summary_large_image" />
  18. {% if metaDescription is defined %}
  19.   <meta property="twitter:description" content="
  20.   {{ metaDescription }}" />
  21. {% endif %}
  22. {% if metaImg is defined %}
  23.   <meta property="twitter:image" content="{{ metaImg }}" />
  24. {% endif %}