app/Resources/views/base_body.html.twig line 1

Open in your IDE?
  1. {% use "includes/blocks/blocks.html.twig" %}
  2. <!doctype html>
  3. <html lang="sk" class="overflow-x-hidden overflow-y-auto" prefix="og: http://ogp.me/ns#">
  4.     <head>
  5.         <link href="{{ asset('vue/index.css', 'css') }}?v={{ cache_busting }}" rel="stylesheet">
  6.         <!-- Google Tag Manager -->
  7.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  8.         new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  9.         j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  10.         'https://sst.funradio.sk/web.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  11.         })(window,document,'script','dataLayer','GTM-T582SND');</script>
  12.         <!-- End Google Tag Manager -->
  13.         {{ render(controller('AppBundle:Snippets:getPpcfg')) }}
  14.         <title>{% block title %}{% endblock %} | {{ site_title }}</title>
  15.         <meta charset="utf-8">
  16.         <meta name="viewport" content="width=device-width, initial-scale=1">
  17.         <link href="/manifest.json?v={{ cache_busting }}" rel="manifest">
  18.         <link href="{{ asset('logo/favicon-16x16.png', 'img') }}?v={{ cache_busting }}" rel="icon" type="image/png" sizes="16x16">
  19.         <link href="{{ asset('logo/favicon-32x32.png', 'img') }}?v={{ cache_busting }}" rel="icon" type="image/png" sizes="32x32">
  20.         <link href="{{ asset('logo/favicon-96x96.png', 'img') }}?v={{ cache_busting }}" rel="icon" type="image/png" sizes="96x96">
  21.         <!--Safari-->
  22.         <link href="{{ asset('logo/apple-icon-57x57.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="57x57">
  23.         <link href="{{ asset('logo/apple-icon-60x60.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="60x60">
  24.         <link href="{{ asset('logo/apple-icon-72x72.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="72x72">
  25.         <link href="{{ asset('logo/apple-icon-76x76.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="76x76">
  26.         <link href="{{ asset('logo/apple-icon-114x114.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="114x114">
  27.         <link href="{{ asset('logo/apple-icon-120x120.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="120x120">
  28.         <link href="{{ asset('logo/apple-icon-144x144.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="144x144">
  29.         <link href="{{ asset('logo/apple-icon-152x152.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="152x152">
  30.         <link href="{{ asset('logo/apple-icon-180x180.png', 'img') }}?v={{ cache_busting }}" rel="apple-touch-icon" type="image/png" sizes="180x180">
  31.         <!--Internet Explorer-->
  32.         <meta name="msapplication-TileColor" content="#ffffff">
  33.         <meta name="msapplication-square70x70logo" content="{{ asset('logo/ms-icon-70x70.png', 'img') }}?v={{ cache_busting }}">
  34.         <meta name="msapplication-wide150x150logo" content="{{ asset('logo/ms-icon-150x150.png', 'img') }}?v={{ cache_busting }}">
  35.         <meta name="msapplication-square310x310logo" content="{{ asset('logo/ms-icon-310x310.png', 'img') }}?v={{ cache_busting }}">
  36.         <link rel="alternate" type="application/rss+xml" href="{{ path('feedRss') }}" />
  37.         <link rel="alternate" type="application/atom+xml" href="{{ path('feedAtom') }}" />
  38.         {% block head %}{% endblock %}
  39.     </head>
  40.     {% block body %}
  41.     {% endblock %}
  42. </html>