templates/layouts/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>
  7.         {% if block('title') is defined and block('title') is not empty %}{{ block('title') }}{% else %}KU SMA API{% endif %}
  8.     </title>
  9.     <link rel="icon" href="{{ asset('build/images/favicon.ico') }}">
  10.     {{ block('head') ?? '' }}
  11.     <!-- Styles -->
  12.     {% block styles %}
  13.     {{ encore_entry_link_tags('app') }}
  14.     {% endblock %}
  15.     <!-- Scripts -->
  16.     {% block scripts %}
  17.     {{ encore_entry_script_tags('app') }}
  18.     {% endblock %}
  19.     {%- if app.debug %}
  20.     <script type="text/javascript">
  21.         console.log("Request method:  {{ app.request.method }}")
  22.         console.log("Application Environment:  {{ app.environment }}")
  23.     </script>
  24.     {% endif %}
  25. </head>
  26. <body>
  27.     <div class="d-flex flex-column h-100">
  28.         <a href="#main-container" class="visually-hidden visually-hidden-focusable">Skip to main content</a>
  29.         <header>
  30.             {% include 'layouts/partials/header.html.twig' %}
  31.         </header>
  32.         <div id="main-container" role="main" class="container flex-grow-1 mt-1">
  33.             <noscript>
  34.                 <div class='alert alert-danger'>
  35.                     <div>Please enabled Javascript. This site does not function well without it.</div>
  36.                 </div>
  37.             </noscript>
  38.             {% include 'layouts/partials/flash.html.twig' %}
  39.             {% block body %}
  40.             Page body content
  41.             {% endblock %}
  42.         </div>
  43.         {% include 'layouts/partials/footer.html.twig' %}
  44.     </div>
  45. </body>
  46. </html>