templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         {# <meta name="description" content="Test freeline" /> #}
  6.         <meta name="robots" content="index, follow" />
  7.         <meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
  8.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.         <title>{% block title %}{{title}}{% endblock %} - My Freeline</title>
  10.         {% block stylesheets %}
  11.             <link href="{{ app.request.getBaseURL() }}/assets/front/titan/lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
  12.         {% endblock %}
  13.         {% block head %}{% endblock %}
  14.     </head>
  15.     
  16.     <body data-spy="scroll" data-target=".onpage-navigation" data-offset="60">
  17.     <!-- Google Tag Manager (noscript) -->
  18.         <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M8V88K5"
  19.         height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  20.     <!-- End Google Tag Manager (noscript) -->
  21.         {% block body %}{% endblock %}
  22.         {% block javascripts %}{% endblock %}
  23.     </body>
  24.     
  25. </html>