<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Xingu Ad Suite</title>
<link rel="icon" href="/img/favicon.png" type="image/x-icon">
<link href="/dist/styles.css" rel="stylesheet" type="text/css" />
<link href="/dist/styles-less.css" rel="stylesheet" type="text/css" />
<script src="/dist/bundle.common.js"></script>
</head>
<body class="xgu">
<nav class="xgu-nav-top">
<div class="row">
<div class="col-xs-2">
<a href="/" class="rio-icon">
<img src="/img/logo.png">
</a>
</div>
<div class="col-xs-10 text-right">
{% if app.user %}
<i class="mdi mdi-account"></i> {{ app.user.getEmail() }}
<a href="/logout">
<i class="mdi mdi-logout"></i> Logout
</a>
{% endif %}
</div>
</div>
</nav>
<div class="xgu-main">
{% if app.user %}
<div class="xgu-nav-left">
{% include 'navigation.twig' %}
</div>
{% endif %}
<div class="xgu-content">
{% block content %}{% endblock %}
</div>
</div>
<footer class="xgu-footer text-right">
© {{ "now"|date("Y") }} - Xingu Advertising GmbH
</footer>
<!-- Fix for chrome bug firing transitions on load (really!)-->
<script> </script>
</body>
</html>