templates/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.         <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
  7.         
  8.         <link rel="icon" href="{{ asset('assets/images/favicon.png') }}" sizes="32x32" />
  9.         <link rel="icon" href="{{ asset('assets/images/favicon.png') }}" sizes="192x192" />
  10.         <link rel="apple-touch-icon" href="{{ asset('assets/images/favicon.png') }}" />
  11.         <link href="{{ asset('build/master_library.css') }}" rel="stylesheet"/> {% block stylesheets %}{% endblock %}
  12.         <title>AccountEdge ShopSync</title>
  13.     </head>
  14.     <body>
  15.         {% block body %}{% endblock %}
  16.         {% block body_child %}{% endblock %}
  17.         <script type="text/javascript" src="{{ asset('build/master_library.js') }}"></script>
  18.         <script type="text/javascript" src="{{ asset('build/runtime.js') }}"></script>        
  19.         {% block javascripts %}{% endblock %}
  20.     </body>
  21. </html>