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

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}" class="h-100">
  3.   <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.     <title>{% spaceless %}{% block title %}{{ app.session.get('ui_str')["meta.default.title"]|raw }}{% endblock %}{% endspaceless %}</title>
  7.     <meta name="description" content="{% spaceless %}{% block description %}{{ app.session.get('ui_str')["meta.default.desc"]|raw }}{% endblock %}{% endspaceless %}" />
  8.             
  9.     {% block cache_control %}
  10.         <meta http-equiv="Cache-control" content="max-age=120, public">
  11.     {% endblock %}
  12.     
  13.     {% set sBaseUrl = "https://" ~app.request.host %}  
  14.     {% if available_locales is defined and available_locales is not null %}  
  15.         {% for locale_code, locale_language in available_locales %}
  16.             <link rel="alternate" hreflang="{{ locale_code }}" href="{{sBaseUrl}}{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all)|merge({'_locale': locale_code})) }}" />   
  17.           {% endfor %}
  18.     {% endif %}
  19.     
  20.     {% block stylesheets %}
  21.     {% endblock %}
  22.     <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png?v=xQOEv2XYGN') }}">
  23.     <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png?v=xQOEv2XYGN') }}">
  24.     <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png?v=xQOEv2XYGN') }}">
  25.     <link rel="manifest" href="{{ asset('site.webmanifest?v=xQOEv2XYGN') }}">
  26.     <link rel="mask-icon" href="{{ asset('safari-pinned-tab.svg?v=xQOEv2XYGN') }}" color="#5bbad5">
  27.     <link rel="shortcut icon" href="{{ asset('favicon.ico?v=xQOEv2XYGN') }}">
  28.     <meta name="apple-mobile-web-app-title" content="New Christian Bible Study">
  29.     <meta name="application-name" content="New Christian Bible Study">
  30.     <meta name="msapplication-TileColor" content="#484646">
  31.     <meta name="theme-color" content="#484646">
  32.     {% block javascripts %}
  33.         <script src="{{ asset('/bundles/ncbsw/js/jquery.min.js') }}" type="text/javascript"></script>      
  34.     {% endblock %}
  35.     {% block pagescript %}
  36.     {% endblock %}
  37.   </head>
  38.   <body class="d-flex flex-column h-100">
  39.     {% block body %}
  40.     {% endblock %}
  41.   </body>
  42. </html>