src/CoreBundle/Resources/views/Layout/base.html.twig line 1

Open in your IDE?
  1. {#
  2.  # This file is part of SolidInvoice package.
  3.  #
  4.  # (c) Pierre du Plessis <[email protected]>
  5.  #
  6.  # This source file is subject to the MIT license that is bundled
  7.  # with this source code in the file LICENSE.
  8.  #}
  9. {% set locale = app.request.locale|split('_')[0] %}
  10. <!DOCTYPE html>
  11. <html class="no-js" lang="{{ locale }}">
  12. <head>
  13.     <meta charset="utf-8">
  14.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  15.     <title>{{ block('page_title') is defined  ? block('page_title') : (block('title') is defined ? block('title')) }}</title>
  16.     <meta name="description" content="">
  17.     <meta name="viewport" content="width=device-width">
  18.     <link rel="icon" type="image/x-icon" href="{{ asset('/favicon.ico') }}" />
  19.     <link rel="shortcut icon" type="image/png" href="{{ asset('/favicon.ico') }}"/>
  20.     <meta name="theme-color" content="#1E88E7">
  21.     {% block stylesheets %}
  22.         {{ encore_entry_link_tags('app') }}
  23.         {% if module is defined %}
  24.             {{ encore_entry_link_tags(module) }}
  25.         {% endif %}
  26.     {% endblock stylesheets %}
  27.     {% include '@SolidInvoiceCore/_partials/scripts.html.twig' %}
  28. </head>
  29. <body class="skin-solidinvoice-default sidebar-mini hold-transition {{ body_class|default('') }}">
  30.     <div class="wrapper">
  31.         {{ block('body_top') is defined ? block('body_top') }}
  32.         <!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
  33.         {% if block('header') is defined %}
  34.             <nav class="main-header navbar navbar-expand navbar-white navbar-light">
  35.                 {{ block('header') }}
  36.             </nav>
  37.         {% endif %}
  38.         {{ block('body') is defined ? block('body') }}
  39.         {% if block('footer') is defined %}
  40.             <footer class="main-footer">
  41.                 {{ block('footer') }}
  42.             </footer>
  43.         {% endif %}
  44.         {% if module is defined %}
  45.             {{ encore_entry_script_tags(module) }}
  46.         {% else %}
  47.             {{ encore_entry_script_tags('core') }}
  48.         {% endif %}
  49.         {{ block('scripts') is defined ? block('scripts') }}
  50.         {{ block('body_bottom') is defined ? block('body_bottom') }}
  51.     </div>
  52. </body>
  53. </html>