<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="description" content="The Galactic Empire - A Star Wars Combine faction">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Imperial Academy{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
<div id="header">
{% if app.user is not null %}
<div class="user">
Logged in as: {{ app.user.handle }}
<a href="{{ url('auth_logout') }}"><span class="fa fa-sign-out-alt"></span></a>
</div>
{% endif %}
</div>
<main id="body">
{{ include('nav.html.twig') }}
<div class="content">
<h1 class="content-title">{% block pageTitle 'Imperial Academy' %}</h1>
{{ include('flashes/flashes.html.twig') }}
<div id="content">
{% block body %}{% endblock %}
</div>
<div class="footer">
<div class="copy">
<div>
Copyright <span class="far fa-copyright"></span> 2012 - {{ "now" | date('Y') }} — The Galactic Empire
</div>
</div>
</div>
</div>
</main>
</body>
</html>