Redesign + Fixes
This commit is contained in:
parent
7718ed6c32
commit
7fe8056e35
67 changed files with 1898 additions and 2799 deletions
|
@ -36,8 +36,8 @@
|
|||
<div class="wrapper">
|
||||
<header class="main-header">
|
||||
<a class="logo">
|
||||
<span class="logo-mini"><b>TP</b></span>
|
||||
<span class="logo-lg"><b>ThemePark</b></span>
|
||||
<span class="logo-mini"><b>{{ env('APP_NAME_SHORT', 'TP') }}</b></span>
|
||||
<span class="logo-lg"><b>{{ env('APP_NAME', 'ThemePark') }}</b></span>
|
||||
</a>
|
||||
|
||||
<nav class="navbar navbar-static-top">
|
||||
|
@ -95,16 +95,30 @@
|
|||
<li @if(Request::is('panel/home*')) class="active" @endif><a href="{{ route('panel.home') }}"><i class="fas fa-tachometer-alt"></i> <span>Dashboard</span></a></li>
|
||||
<li @if(Request::is('panel/message*')) class="active" @endif><a href="{{ route('panel.message') }}"><i class="fas fa-feather-alt"></i> <span>Message</span></a></li>
|
||||
<li @if(Request::is('panel/ums*')) class="active" @endif><a href="{{ route('panel.ums') }}"><i class="fas fa-users"></i> User Manager</a></li>
|
||||
<li class="treeview @if(Request::is('panel/show*')) menu-open active @endif">
|
||||
@if(env('SHOWS', false))
|
||||
<li class="treeview @if(Request::is('panel/show*')) menu-open active @endif">
|
||||
<a>
|
||||
<i class="fas fa-theater-masks"></i> <span>Shows</span>
|
||||
<span class="pull-right-container">
|
||||
<i class="fa fa-angle-left pull-right"></i>
|
||||
</span>
|
||||
</a>
|
||||
<ul class="treeview-menu" style="display: @if(Request::is('panel/show*')) block @else none @endif">
|
||||
<li @if(Request::is('panel/show') || Request::is('panel/show/*')) class="active" @endif><a href="{{ route('panel.show') }}"><i class="fas fa-feather-alt"></i> Manager</a></li>
|
||||
<li @if(Request::is('panel/shows*')) class="active" @endif><a href="{{ route('panel.shows') }}"><i class="fas fa-calendar-alt"></i> Dates</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
<li class="treeview @if(Request::is('panel/tools*')) menu-open active @endif">
|
||||
<a>
|
||||
<i class="fas fa-theater-masks"></i> <span>Shows</span>
|
||||
<i class="fas fa-wrench"></i> <span>Tools</span>
|
||||
<span class="pull-right-container">
|
||||
<i class="fa fa-angle-left pull-right"></i>
|
||||
</span>
|
||||
</a>
|
||||
<ul class="treeview-menu" style="display: @if(Request::is('panel/show*')) block @else none @endif">
|
||||
<li @if(Request::is('panel/show') || Request::is('panel/show/*')) class="active" @endif><a href="{{ route('panel.show') }}"><i class="fas fa-feather-alt"></i> Manager</a></li>
|
||||
<li @if(Request::is('panel/shows*')) class="active" @endif><a href="{{ route('panel.shows') }}"><i class="fas fa-calendar-alt"></i> Dates</a></li>
|
||||
<ul class="treeview-menu" style="display: @if(Request::is('panel/tools*')) block @else none @endif">
|
||||
<li @if(Request::is('panel/tools/operator*')) class="active" @endif><a href="{{ route('panel.operator') }}"><i class="fas fa-user-cog"></i> Operator</a></li>
|
||||
<li @if(Request::is('panel/tools/css*')) class="active" @endif><a href="{{ route('panel.css') }}"><i class="fas fa-palette"></i> CSS</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
@ -129,7 +143,7 @@
|
|||
<div class="pull-right hidden-xs">
|
||||
<b>Version</b> {{ env('APP_VERSION', '1.0') }}
|
||||
</div>
|
||||
<span>Copyright © 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo-lg.png') }}" alt="IOByte"></a>. All rights reserved.</span>
|
||||
<span>Copyright © 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo.png') }}" alt="IOByte"></a>. All rights reserved.</span>
|
||||
</footer>
|
||||
|
||||
<div class="control-sidebar-bg"></div>
|
||||
|
|
Reference in a new issue