2023-07-29 00:55:16 +02:00
|
|
|
<div class="menu">
|
2023-03-29 03:19:40 +02:00
|
|
|
{% if title == "Settings" %}
|
2023-03-26 00:44:35 +01:00
|
|
|
{% apply spaceless %}
|
|
|
|
{{ include("dash/partials/submenu_settings.twig") }}
|
|
|
|
{% endapply %}
|
2023-04-05 23:40:14 +02:00
|
|
|
{% elseif title=="Start" %}
|
|
|
|
{% apply spaceless %}
|
|
|
|
{{ include("dash/partials/submenu_start.twig") }}
|
|
|
|
{% endapply %}
|
|
|
|
{% endif %}
|
|
|
|
<a id="settings" href="/dashboard/settings" title="settings">
|
|
|
|
<button>
|
|
|
|
<i class="ti ti-home-cog"></i>
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
<a id="navigation" href="/dashboard/navigation" title="edit navigation">
|
|
|
|
<button>
|
|
|
|
<i class="ti ti-arrow-autofit-height"></i>
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
<a id="navigation" href="/dashboard/logout" title="log out">
|
|
|
|
<button>
|
|
|
|
<i class="ti ti-logout"></i>
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2023-07-29 00:55:16 +02:00
|
|
|
<button class="menu-toggle">
|
2023-04-05 23:40:14 +02:00
|
|
|
<i class="ti ti-menu-2"></i>
|
|
|
|
</button>
|
|
|
|
|
2023-07-29 00:55:16 +02:00
|
|
|
<div class="mobile-menu">
|
2023-04-05 23:40:14 +02:00
|
|
|
{% if title == "Settings" %}
|
|
|
|
{% apply spaceless %}
|
|
|
|
{{ include("dash/partials/submenu_settings.twig") }}
|
|
|
|
{% endapply %}
|
|
|
|
{% elseif title=="Start" %}
|
|
|
|
{% apply spaceless %}
|
|
|
|
{{ include("dash/partials/submenu_start.twig") }}
|
|
|
|
{% endapply %}
|
2023-03-26 00:44:35 +01:00
|
|
|
{% endif %}
|
2021-05-24 04:27:33 +02:00
|
|
|
<a id="settings" href="/dashboard/settings" title="settings">
|
|
|
|
<button>
|
2023-03-26 05:28:38 +02:00
|
|
|
<i class="ti ti-home-cog"></i>
|
2021-05-24 04:27:33 +02:00
|
|
|
</button>
|
2022-11-03 21:46:36 +01:00
|
|
|
</a>
|
2021-05-24 04:27:33 +02:00
|
|
|
<a id="navigation" href="/dashboard/navigation" title="edit navigation">
|
|
|
|
<button>
|
2023-04-05 23:40:14 +02:00
|
|
|
<i class="ti ti-arrow-autofit-height"></i>
|
2021-05-24 04:27:33 +02:00
|
|
|
</button>
|
2022-11-03 21:46:36 +01:00
|
|
|
</a>
|
2021-05-24 04:27:33 +02:00
|
|
|
<a id="navigation" href="/dashboard/logout" title="log out">
|
|
|
|
<button>
|
2023-03-26 05:28:38 +02:00
|
|
|
<i class="ti ti-logout"></i>
|
2021-05-24 04:27:33 +02:00
|
|
|
</button>
|
|
|
|
</a>
|
2022-11-03 21:46:36 +01:00
|
|
|
</div>
|