app/Resources/views/parts/meta.html.twig line 1

Open in your IDE?
  1. {% set ogImageDefaultWidth = 1200 %} {% set ogImageDefaultHeight = 630 %}
  2. {% if ogImageWidth is defined %} {% set ogImageDefaultWidth = ogImageWidth %} {% endif %}
  3. {% if ogImageHeight is defined %} {% set ogImageDefaultHeight = ogImageHeight %} {% endif %}
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <meta name="keywords" content="{{ keywords }}">
  6. <meta name="description" content="{{ description }}">
  7. <meta name="author" content="Toolbox Software - toolbox.am">
  8. <meta property="og:type" content="article"/>
  9. <meta property="og:url" content="{{ app.request.uri }}"/>
  10. <meta property="og:image" content="{{ app.request.getSchemeAndHttpHost() ~ asset(ogImage) }}"/>
  11. <meta property="og:image:width" content="{{ ogImageDefaultWidth }}"/>
  12. <meta property="og:image:height" content="{{ ogImageDefaultHeight }}"/>
  13. <meta property="og:site_name" content="RG Services"/>
  14. <meta property="og:title" content="{{ title }} | RG Services"/>
  15. <meta property="og:description" content="{{ description }}"/>