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. <body>
  21. <header id="header">
  22.     {% include 'header.html.twig' %}
  23. </header>
  24. <div class="container">
  25.     {% include 'flash_messages.html.twig' %}
  26.     {% block body %}{% endblock %}
  27. </div>
  28. <footer id="footer">
  29.     {% include 'footer.html.twig' %}
  30. </footer>
  31. {% block javascripts %}
  32.     {{ encore_entry_script_tags('app') }}
  33. {% endblock %}
  34. </body>
  35. </html>