templates/base_blank.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <!--[if IE 8]> <html lang="es" translate="no" class="ie8 no-js"> <![endif]-->
  3. <!--[if IE 9]> <html lang="es" translate="no" class="ie9 no-js"> <![endif]-->
  4. <!--[if !IE]><!-->
  5. <html>
  6.     <!--<![endif]-->
  7.     <head>
  8.         <meta charset="utf-8"/>
  9.         <title>{% block title %}{% endblock %}</title>
  10.         {{ render_google_analytics()|raw }}
  11.         
  12.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  13.         <meta name="viewport" content="width=device-width, initial-scale=1">
  14.         <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  15.         <meta content="" name="description"/>
  16.         <meta content="" name="author"/>
  17.         
  18.         <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
  19.         <meta http-equiv="Pragma" content="no-cache"/>
  20.         <meta http-equiv="Expires" content="0"/>
  21.         <meta name="robots" content="noindex,nofollow,noodp,noydir,noarchive" />
  22.         
  23.         <link rel="apple-touch-icon-precomposed" sizes="57x57" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-57x57.png') }}">
  24.         <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-72x72.png') }}">
  25.         <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-114x114.png') }}">
  26.         <link rel="apple-touch-icon-precomposed" sizes="120x120" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-120x120.png') }}">
  27.         <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-144x144.png') }}">
  28.         <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ asset('iconos/favicons/frontend_icon/apple-touch-icon-152x152.png') }}">
  29.         <link rel="icon" type="image/png" href="{{ asset('iconos/favicons/frontend_icon/favicon-16x16.png') }}" sizes="16x16">
  30.         <link rel="icon" type="image/png" href="{{ asset('iconos/favicons/frontend_icon/favicon-32x32.png') }}" sizes="32x32">
  31.         
  32.         {% block stylesheetspage %}{% endblock %}
  33.     </head>
  34.     <body>
  35.         {% block pagecontent %}{% endblock %}
  36.         {% block javascriptspage %}{% endblock %}
  37.     </body>
  38. </html>