Commit 5092f2d3 authored by Micheal Mand's avatar Micheal Mand

Clean up backend layout

Replace Facade usage with helpers, clean up spacing and style, adjust head items to better match conventions
Signed-off-by: 's avatarMicheal Mand <micheal@kmdwebdesigns.com>
parent ce0a3843
<!DOCTYPE html>
<html>
<head>
<base src="{{ URL::asset('/') }}" />
<meta charset="UTF-8">
<title>
@section('title')
@setting('core::site-name') | Admin
<html lang="{{ locale() }}">
<head>
<meta charset="UTF-8">
<title>
@section('title')
@setting('core::site-name') | Admin
@show
</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="user-api-token" content="{{ $currentUser->getFirstApiKey() }}">
<meta name="current-locale" content="{{ locale() }}">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover">
<base href="{{ url('/') }}">
<link rel="canonical" href="{{ request()->url() }}">
@foreach($cssFiles as $css)
<link media="all" type="text/css" rel="stylesheet" href="{{ asset($css) }}">
@endforeach
<link media="all" type="text/css" rel="stylesheet" href="{{ mix('css/app.css') }}">
{!! Theme::script('vendor/jquery/jquery.min.js') !!}
@include('partials.asgard-globals')
@section('styles')
@show
</title>
<meta id="token" name="token" value="{{ csrf_token() }}" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="user-api-token" content="{{ $currentUser->getFirstApiKey() }}">
<meta name="current-locale" content="{{ locale() }}">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover">
@foreach($cssFiles as $css)
<link media="all" type="text/css" rel="stylesheet" href="{{ URL::asset($css) }}">
@endforeach
<link media="all" type="text/css" rel="stylesheet" href="{{ mix('css/app.css') }}">
{!! Theme::script('vendor/jquery/jquery.min.js') !!}
@include('partials.asgard-globals')
@section('styles')
@show
@stack('css-stack')
@stack('translation-stack')
@stack('css-stack')
@stack('translation-stack')
<script>
$.ajaxSetup({
headers: { 'Authorization': 'Bearer {{ $currentUser->getFirstApiKey() }}' }
});
var AuthorizationHeaderValue = 'Bearer {{ $currentUser->getFirstApiKey() }}';
</script>
<script>
$.ajaxSetup({
headers: { 'Authorization': 'Bearer {{ $currentUser->getFirstApiKey() }}' }
});
var AuthorizationHeaderValue = 'Bearer {{ $currentUser->getFirstApiKey() }}';
</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
@routes
</head>
<body class="{{ config('asgard.core.core.skin', 'skin-blue') }} sidebar-mini" style="padding-bottom: 0 !important;">
<div class="wrapper" id="app">
<header class="main-header">
<a href="{{ route('dashboard.index') }}" class="logo">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
@routes
</head>
<body class="{{ config('asgard.core.core.skin', 'skin-blue') }} sidebar-mini" style="padding-bottom: 0 !important;">
<div class="wrapper" id="app">
<header class="main-header">
<a href="{{ route('dashboard.index') }}" class="logo">
<span class="logo-mini">
@setting('core::site-name-mini')
</span>
<span class="logo-lg">
<span class="logo-lg">
@setting('core::site-name')
</span>
</a>
@include('partials.top-nav')
</header>
@include('partials.sidebar-nav')
</a>
@include('partials.top-nav')
</header>
@include('partials.sidebar-nav')
<aside class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
@yield('content-header')
</section>
<aside class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
@yield('content-header')
</section>
<!-- Main content -->
<section class="content">
@include('partials.notifications')
@yield('content')
<router-view></router-view>
</section><!-- /.content -->
</aside><!-- /.right-side -->
@include('partials.footer')
@include('partials.right-sidebar')
</div><!-- ./wrapper -->
<!-- Main content -->
<section class="content">
@include('partials.notifications')
@yield('content')
<router-view></router-view>
</section><!-- /.content -->
</aside><!-- /.right-side -->
@include('partials.footer')
@include('partials.right-sidebar')
</div><!-- ./wrapper -->
@foreach($jsFiles as $js)
<script src="{{ URL::asset($js) }}" type="text/javascript"></script>
@endforeach
<script>
window.AsgardCMS = {
translations: {!! $staticTranslations !!},
locales: {!! json_encode(LaravelLocalization::getSupportedLocales()) !!},
currentLocale: '{{ locale() }}',
editor: '{{ $activeEditor }}',
ckeditorCustomConfig: '{{ config('asgard.core.core.ckeditor-config-file-path', '') }}',
adminPrefix: '{{ config('asgard.core.core.admin-prefix') }}',
hideDefaultLocaleInURL: '{{ config('laravellocalization.hideDefaultLocaleInURL') }}',
filesystem: '{{ config('asgard.media.config.filesystem') }}'
};
</script>
@foreach($jsFiles as $js)
<script src="{{ asset($js) }}" type="text/javascript"></script>
@endforeach
<script>
window.AsgardCMS = {
translations: {!! $staticTranslations !!},
locales: {!! json_encode(LaravelLocalization::getSupportedLocales()) !!},
currentLocale: '{{ locale() }}',
editor: '{{ $activeEditor }}',
ckeditorCustomConfig: '{{ config('asgard.core.core.ckeditor-config-file-path', '') }}',
adminPrefix: '{{ config('asgard.core.core.admin-prefix') }}',
hideDefaultLocaleInURL: '{{ config('laravellocalization.hideDefaultLocaleInURL') }}',
filesystem: '{{ config('asgard.media.config.filesystem') }}'
};
</script>
<script src="{{ mix('js/manifest.js') }}"></script>
<script src="{{ mix('js/vendor.js') }}"></script>
<script src="{{ mix('js/app.js') }}"></script>
<script src="{{ mix('js/manifest.js') }}"></script>
<script src="{{ mix('js/vendor.js') }}"></script>
<script src="{{ mix('js/app.js') }}"></script>
<?php if (is_module_enabled('Notification')): ?>
<script src="https://js.pusher.com/4.1.0/pusher.min.js" integrity="sha384-e9MoFh6Cw/uluf+NZ6MJwfJ1Dm7UOvJf9oTBxxCYDyStJeeAF0q53ztnEbLLDSQP" crossorigin="anonymous"></script>
<script src="{{ Module::asset('notification:js/pusherNotifications.js') }}"></script>
<script>
$('.notifications-list').pusherNotifications({
pusherKey: '{{ config('broadcasting.connections.pusher.key') }}',
pusherCluster: '{{ config('broadcasting.connections.pusher.options.cluster') }}',
pusherEncrypted: {{ config('broadcasting.connections.pusher.options.encrypted') }},
loggedInUserId: {{ $currentUser->id }},
});
</script>
<?php endif; ?>
@if(is_module_enabled('Notification'))
<script src="https://js.pusher.com/4.1.0/pusher.min.js" integrity="sha384-e9MoFh6Cw/uluf+NZ6MJwfJ1Dm7UOvJf9oTBxxCYDyStJeeAF0q53ztnEbLLDSQP" crossorigin="anonymous"></script>
<script src="{{ Module::asset('notification:js/pusherNotifications.js') }}"></script>
<script>
$('.notifications-list').pusherNotifications({
pusherKey: '{{ config('broadcasting.connections.pusher.key') }}',
pusherCluster: '{{ config('broadcasting.connections.pusher.options.cluster') }}',
pusherEncrypted: {{ config('broadcasting.connections.pusher.options.encrypted') }},
loggedInUserId: {{ $currentUser->id }}
});
</script>
@endif
<?php if (config('asgard.core.core.ckeditor-config-file-path') !== ''): ?>
<script>
$('.ckeditor').each(function() {
CKEDITOR.replace($(this).attr('name'), {
customConfig: '{{ config('asgard.core.core.ckeditor-config-file-path') }}'
});
});
</script>
<?php endif; ?>
@section('scripts')
@show
@stack('js-stack')
</body>
@if(config('asgard.core.core.ckeditor-config-file-path') !== '')
<script>
$('.ckeditor').each(function () {
CKEDITOR.replace($(this).attr('name'), {
customConfig: '{{ config('asgard.core.core.ckeditor-config-file-path') }}'
});
});
</script>
@endif
@section('scripts')
@show
@stack('js-stack')
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment