src/StartPlatz/Bundle/StyleBundle/Resources/views/_metaData.html.twig line 1

Open in your IDE?
  1. {% if robots is not defined %}
  2.     {% set robots = "index,follow" %}
  3. {% endif %}
  4. <meta name="description" content="{{ seoDescription }}" />
  5. <meta name="author" content="" />
  6. {% if app.environment == 'prod' %}
  7.     <meta name="robots" content="{{ robots }}" />
  8.     {% if canonicalUrl is defined %}
  9.         <link rel="canonical" href="{{ canonicalUrl }}" />
  10.     {% endif %}
  11. {% else %}
  12.     <meta name="robots" content="noindex,nofollow">
  13. {% endif %}