![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/resources/themes/jobs/layouts/ |
<!DOCTYPE html> <html lang="en"> <head> <title> @yield('title') | {{ \Settings::get('site_name', 'Corals') }} </title> {!! \SEO::generate() !!} <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> @include('partials.scripts.header') </head> <body> @include('partials.header') <div class="offcanvas-wrapper"> <div class="breacrumb-cover"> <div class="container " style=" margin-top: 100px;"> @yield('content_header') </div> </div> <div class="container-fluid mb-3 col-md-11"> <div class="row"> <div class="col-md-6"> @yield('custom-actions') </div> <div class="col-md-6 text-right" style="padding-bottom: 10px;"> @yield('actions') </div> </div> <div class="row"> @if(!(isset($hide_sidebar) && $hide_sidebar)) <div class="col-md-3"> @auth @php $vendor_role = \Settings::get('jobs_general_vendor_role', '') @endphp @if ($vendor_role && !user()->hasRole($vendor_role)) {!! '<a href="' . url('jobs/store/enroll') . '" class="btn btn-info btn-block">'.trans('jobs::labels.store.become_a_seller').'</a>' !!} @endif @endauth <aside class="user-info-wrapper py-1" style="background-color: whitesmoke;"> <div class="user-info d-flex align-items-center mb-4 "> <div class="user-avatar "><a class="edit-avatar" href="{{ url('profile#profile') }}"></a><img style="width: 110px;" class="img-fluid rounded-circle border border-3" src="{{ user()->picture_thumb }}" alt="{{ user()->full_name }}"></div> <div class="user-data ml-25"> <h4 style="font-size: 25px;">{{ user()->full_name }}</h4> <a class="btn-default btn-shadow hover-up" href="{{url('/profile')}}">My Profile</a> <span> , {{ user()->present('created_at') }}</span> </div> </div> </aside> <nav class="list-group list-group-root well"> <a class="list-group-item {{ \Request::is('dashboard')?'active':'' }}" href="{{ url('dashboard') }}"> @lang('corals-jobs::labels.partial.dashboard') </a> @include('partials.menu.admin_menu_item', ['menus'=> \Menus::getMenu('sidebar','active') ]) </nav> </div> @endif <div class="{{ (isset($hide_sidebar) && $hide_sidebar)?'col-md-12':'col-md-9' }}"> @yield('content') </div> </div> </div> @include('partials.footer') <!-- Back To Top Button--> <a class="scroll-to-top-btn" href="#"><i class="icon-arrow-up"></i></a> <!-- Backdrop--> <div class="site-backdrop"></div> </div> @include('partials.scripts.footer') </body> </html>