forked from projects/fipamo
e7cd52bd12
Removed 'carot-ps' from dependencies so it had to be removed from scripts calling that package. Also renamed dash script to 'dash.js' just so it's clear it is for the dashboard
49 lines
1.1 KiB
Twig
49 lines
1.1 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="theme-color" content="#FFFFFF"/>
|
|
<title>
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% if status %}
|
|
<header>
|
|
{% apply spaceless %}
|
|
<nav role="top-nav">
|
|
<div role="nav-left">
|
|
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/fipamo-logo.svg"/></a>
|
|
</div>
|
|
<div role="title">
|
|
<h1>{{ title }}</h1>
|
|
</div>
|
|
<div role="nav-right">
|
|
{% if status %}
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/navigation.twig") }}
|
|
{% endapply %}
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
<div role="notify">
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/notifications.twig") }}
|
|
{% endapply %}
|
|
</div>
|
|
{% endapply %}
|
|
{% endif %}
|
|
</header>
|
|
<main>
|
|
{% apply spaceless %}
|
|
{% block mainContent %}{% endblock %}
|
|
{% endapply %}
|
|
</main>
|
|
<footer></footer>
|
|
<script type="module" src="/assets/scripts/dash.js"></script>
|
|
</body>
|
|
</html>
|