templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     {% block favicon %}
  6.         <link rel="icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
  7.     {% endblock %}
  8.     <title>{{ witalink_starter_variables.applicationName }} | {% block title %}{% endblock %}</title>
  9.     {% block stylesheets %}
  10.         {% include "@CHCookieConsent/cookie_consent_styling.html.twig" %}
  11.         <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  12.         {{ encore_entry_link_tags('app') }}
  13.     {% endblock %}
  14.     {% block javascripts %}
  15.         {{ encore_entry_script_tags('app') }}
  16.     {% endblock %}
  17. </head>
  18. <body class="{% block body_class %}hold-transition sidebar-mini layout-fixed{% endblock %}">
  19. {% if chcookieconsent_isCookieConsentSavedByUser() != true %}
  20.     {{ render_esi(path('ch_cookie_consent.show', { 'locale' : 'fr' })) }}
  21. {% endif %}
  22. {% block maxiBody %}
  23.     <div class="wrapper">
  24.         {% include '_components/_navbar.html.twig' %}
  25.         {% include '_components/_sidebar.html.twig' %}
  26.         <!-- Content Wrapper. Contains page content -->
  27.         <div class="content-wrapper">
  28.             {% include '_components/_breadcrumb.html.twig' %}
  29.             {% block content %}
  30.                 <!-- Main content -->
  31.                 <div class="content">
  32.                     <div class="container-fluid">
  33.                         <div class="row">
  34.                             {% block body %}{% endblock %}
  35.                         </div>
  36.                         <!-- /.row -->
  37.                     </div><!-- /.container-fluid -->
  38.                 </div>
  39.                 <!-- /.content -->
  40.             {% endblock %}
  41.         </div>
  42.         <!-- /.content-wrapper -->
  43.         {% include '_components/_control-sidebar.html.twig' %}
  44.         {% include '@WitalinkStarter/_components/_footer.html.twig' %}
  45.     </div>
  46.     <!-- ./wrapper -->
  47. {% endblock %}
  48. {% block modals %}{% endblock %}
  49. </body>
  50. </html>