2021-03-25 22:05:32 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2022-04-16 22:21:57 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="theme-color" content="#FFFFFF"/>
|
|
|
|
<title>
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
</title>
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-11-03 21:46:36 +01:00
|
|
|
{% if status %}
|
|
|
|
<header>
|
|
|
|
{% apply spaceless %}
|
|
|
|
<nav>
|
|
|
|
<div role="nav-left">
|
|
|
|
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/></a>
|
|
|
|
</div>
|
2023-03-23 21:55:34 +01:00
|
|
|
<div role="notifications">
|
|
|
|
{% apply spaceless %}
|
|
|
|
{{ include("dash/partials/notifications.twig") }}
|
|
|
|
{% endapply %}
|
2022-11-03 21:46:36 +01:00
|
|
|
</div>
|
|
|
|
<div role="nav-right">
|
|
|
|
{% if status %}
|
2022-04-16 22:21:57 +02:00
|
|
|
{% apply spaceless %}
|
2022-11-03 21:46:36 +01:00
|
|
|
{{ include("dash/partials/navigation.twig") }}
|
2022-04-16 22:21:57 +02:00
|
|
|
{% endapply %}
|
2022-11-03 21:46:36 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</nav>
|
2022-04-16 22:21:57 +02:00
|
|
|
{% endapply %}
|
2022-11-03 21:46:36 +01:00
|
|
|
{% endif %}
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
{% apply spaceless %}
|
|
|
|
{% block mainContent %}{% endblock %}
|
|
|
|
{% endapply %}
|
|
|
|
</main>
|
2022-04-16 22:21:57 +02:00
|
|
|
<footer></footer>
|
2023-03-23 21:55:34 +01:00
|
|
|
<script src="/assets/scripts/start.js?=dfdfdfse" type="text/javascript"></script>
|
2022-04-16 22:21:57 +02:00
|
|
|
</body>
|
|
|
|
</html>
|