templates/layout.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Xingu Ad Suite</title>
  6.     <link rel="icon" href="/img/favicon.png" type="image/x-icon">
  7.     <link href="/dist/styles.css" rel="stylesheet" type="text/css" />
  8.     <link href="/dist/styles-less.css" rel="stylesheet" type="text/css" />
  9.     <script src="/dist/bundle.common.js"></script>
  10. </head>
  11. <body class="xgu">
  12. <nav class="xgu-nav-top">
  13.     <div class="row">
  14.         <div class="col-xs-2">
  15.             <a href="/" class="rio-icon">
  16.                 <img src="/img/logo.png">
  17.             </a>
  18.         </div>
  19.         <div class="col-xs-10 text-right">
  20.             {% if app.user  %}
  21.                 <i class="mdi mdi-account"></i>&nbsp;{{ app.user.getEmail() }}
  22.                 <a href="/logout">
  23.                     <i class="mdi mdi-logout"></i>&nbsp;Logout
  24.                 </a>
  25.             {% endif %}
  26.         </div>
  27.     </div>
  28. </nav>
  29. <div class="xgu-main">
  30.     {% if app.user  %}
  31.     <div class="xgu-nav-left">
  32.         {% include 'navigation.twig' %}
  33.     </div>
  34.     {% endif %}
  35.     <div class="xgu-content">
  36.         {% block content %}{% endblock %}
  37.     </div>
  38. </div>
  39. <footer class="xgu-footer text-right">
  40.     &copy; {{ "now"|date("Y") }} - Xingu Advertising GmbH
  41. </footer>
  42. <!-- Fix for chrome bug firing transitions on load (really!)-->
  43. <script> </script>
  44. </body>
  45. </html>