You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.3 KiB
Twig
60 lines
2.3 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="notifications" class="notifications">
|
|
<div id="notifyMessage" class="notifyMessage">
|
|
<div id="notify-good" class="notify-icon">
|
|
<svg viewbox="0 0 20 20" class="icons"><use xlink:href="/assets/images/global/sprite.svg#entypo-emoji-flirt"/></svg>
|
|
</div>
|
|
<div id="notify-lame" class="notify-icon">
|
|
<svg viewbox="0 0 20 20" class="icons"><use xlink:href="/assets/images/global/sprite.svg#entypo-emoji-sad"/></svg>
|
|
</div>
|
|
<div id="notify-working" class="notify-icon">
|
|
<svg viewbox="0 0 20 20" class="icons"><use xlink:href="/assets/images/global/sprite.svg#entypo-cog"/></svg>
|
|
</div>
|
|
<p id="message-text"></p>
|
|
</div>
|
|
</div>
|
|
<div id="main-content" class="main-container">
|
|
<section id="dash-index-content">
|
|
{% if status %}
|
|
<header id="header">
|
|
<div id="wrapper">
|
|
{% apply spaceless %}
|
|
<div id="left">
|
|
<a href="/dashboard"><img id="the-logo" src="/assets/images/global/the-logo.svg"/></a>
|
|
</div>
|
|
<div id="right">
|
|
{% if status %}
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/navigation.twig") }}
|
|
{% endapply %}
|
|
{% endif %}
|
|
</div>
|
|
{% endapply %}
|
|
</div>
|
|
|
|
</header>
|
|
{% endif %}
|
|
{% apply spaceless %}
|
|
{% block mainContent %}{% endblock %}
|
|
{% endapply %}
|
|
|
|
</section>
|
|
|
|
|
|
</div>
|
|
|
|
<footer></footer>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html> |