78bfe4596b
Created new CSS styles for dash nav editor and updated the appropriate controller scripts. Also updated the icons for the main nav.
23 lines
553 B
Twig
23 lines
553 B
Twig
<div role="menu">
|
|
{% if title == "Dash Settings" %}
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/submenu_settings.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-menu-2"></i>
|
|
</button>
|
|
</a>
|
|
<a id="navigation" href="/dashboard/logout" title="log out">
|
|
<button>
|
|
<i class="ti ti-logout"></i>
|
|
</button>
|
|
</a>
|
|
</div>
|