templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="vi-VN">
  3. <head>
  4.     <meta charset="UTF-8" />
  5.     <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
  6.     <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  7.     {{ include('common/meta.html.twig', {'seo' : metaData}) }}
  8.     <meta property="fb:pages" content="332832934708306" />
  9.     <link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon">
  10.     {% block main_css %}{% endblock %}
  11.     <!--[if lt IE 9]>
  12.     <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  13.     <![endif]-->
  14.     <!-- Google Tag Manager -->
  15.     <script>(function (w, d, s, l, i) {
  16.             w[l] = w[l] || [];
  17.             w[l].push({
  18.                 'gtm.start':
  19.                     new Date().getTime(), event: 'gtm.js'
  20.             });
  21.             var f = d.getElementsByTagName(s)[0],
  22.                 j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
  23.             j.async = true;
  24.             j.src =
  25.                 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
  26.             f.parentNode.insertBefore(j, f);
  27.         })(window, document, 'script', 'dataLayer', 'GTM-T5MK4P4');</script>
  28.     <!-- End Google Tag Manager -->
  29.     <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3353093352836916"
  30.             crossorigin="anonymous"></script>
  31. </head>
  32. <body>
  33. <!-- Google Tag Manager (noscript) -->
  34. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T5MK4P4"
  35.                   height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  36. <!-- End Google Tag Manager (noscript) -->
  37. {% include 'common/header.html.twig' %}
  38. {% block body %}{% endblock %}
  39. <div id="myModal" class="modal">
  40.     <div class="modal-content">
  41.         <span class="close">&times;</span>
  42.         <p class="content-model"></p>
  43.     </div>
  44. </div>
  45. {% include 'common/footer.html.twig' %}
  46. {% block main_js %}{% endblock %}
  47. </body>
  48. </html>