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.     {% block SEO %}
  6.         <title>{% block window_title %}{{ appName }}{% endblock %}</title>
  7.         <meta content="PROJECT_DESCRIPTION" name="description">
  8.         <meta content="PROJECT_KEYWORDS" name="keywords">
  9.     {% endblock SEO %}
  10.     <!-- Favicons -->
  11.     {#    <link href="{{ asset('build/images/favicon.74c079e7.png') }}" rel="icon">#}
  12.     {#    <link href="{{ asset('build/images/apple-touch-icon.d2525de9.png') }}" rel="apple-touch-icon">#}
  13.     {% block stylesheets %}
  14.         <!-- Google Fonts -->
  15.         <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i,900"
  16.               rel="stylesheet">
  17.         {{ encore_entry_link_tags('app') }}
  18.     {% endblock %}
  19. </head>
  20. {% if sidebarId is not defined %}{% set sidebarId = 'navigation-sidebar'%}{% endif %}
  21. {% if navbarTopOffset is not defined %}{% set navbarTopOffset = 56 %}{% endif %}
  22. <body data-bs-spy="scroll" data-bs-target="#{{ sidebarId }}" data-bs-offset="{{ navbarTopOffset }}" tabindex="0">
  23. <header id="header" class="sticky-top">
  24.     {% include 'header.html.twig' %}
  25. </header>
  26. {% block full_body %}
  27.     <div class="container-fluid">
  28.         <div class="row">
  29.             <div class="col-2">
  30.             </div>
  31.             <div class="col-10">
  32.                 <div id="main-content">
  33.                     {% include 'flash_messages.html.twig' %}
  34.                     {% block body %}{% endblock %}
  35.                     <footer id="footer">
  36.                         {% include 'footer.html.twig' %}
  37.                     </footer>
  38.                 </div>
  39.             </div>
  40.         </div>
  41.     </div>
  42. {% endblock %}
  43. {% block javascripts %}
  44.     {{ encore_entry_script_tags('app') }}
  45. {% endblock %}
  46. </body>
  47. </html>