templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en-GB">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="description" content="The Galactic Empire - A Star Wars Combine faction">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <title>{% block title %}Imperial Academy{% endblock %}</title>
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.         {% block javascripts %}
  12.             {{ encore_entry_script_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body>
  16.         <div id="header">
  17.             {% if app.user is not null %}
  18.                 <div class="user">
  19.                     Logged in as: {{ app.user.handle }}
  20.                     <a href="{{ url('auth_logout') }}"><span class="fa fa-sign-out-alt"></span></a>
  21.                 </div>
  22.             {% endif %}
  23.         </div>
  24.         <main id="body">
  25.             {{ include('nav.html.twig') }}
  26.             <div class="content">
  27.                 <h1 class="content-title">{% block pageTitle 'Imperial Academy' %}</h1>
  28.                 {{ include('flashes/flashes.html.twig') }}
  29.                 <div id="content">
  30.                     {% block body %}{% endblock %}
  31.                 </div>
  32.                 <div class="footer">
  33.                     <div class="copy">
  34.                         <div>
  35.                             Copyright <span class="far fa-copyright"></span> 2012 - {{ "now" | date('Y') }} &mdash; The Galactic Empire
  36.                         </div>
  37.                     </div>
  38.                 </div>
  39.             </div>
  40.         </main>
  41.     </body>
  42. </html>