forked from projects/fipamo
ro
367f20d8fa
Brought over a template from the old build to see how the conversion process would go (it's not bad) and see if the CSS would still stick (it did) The wiring will be finished when the auth class is completed
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<div class="menu">
|
|
@if($title == "Settings" )
|
|
@include('includes.submenu-settings')
|
|
@elseif($title == "Start" )
|
|
@include('includes.submenu-settings')
|
|
@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>
|
|
|
|
<button class="menu-toggle">
|
|
<i class="ti ti-menu-2"></i>
|
|
</button>
|
|
|
|
<div class="mobile-menu">
|
|
@if($title == "Settings" )
|
|
@include('includes.submenu-settings')
|
|
@elseif($title == "Start" )
|
|
@include('includes.submenu-settings')
|
|
@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>
|