More organization of web assets
This commit is contained in:
@@ -14,9 +14,9 @@
|
||||
<meta name="api-key" content="{{ Auth::check() ? Auth::user()->api_key: '' }}">
|
||||
{{-- End the required lines block --}}
|
||||
|
||||
<script src="{{ public_asset('/assets/system/js/jquery.js') }}"></script>
|
||||
<script src="{{ public_asset('/assets/global/js/jquery.js') }}"></script>
|
||||
|
||||
<link rel="icon" type="image/png" href="{{ public_asset('/assets/admin/img/favicon.png') }}">
|
||||
<link rel="shortcut icon" type="image/png" href="{{ public_asset('/assets/img/favicon.png') }}"/>
|
||||
|
||||
<link href='https://fonts.googleapis.com/css?family=Muli:400,300' rel='stylesheet' type='text/css'>
|
||||
<link href="http://fonts.googleapis.com/css?family=Roboto:400,700,300" rel="stylesheet" type="text/css">
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<div class="sidebar-wrapper">
|
||||
<div class="logo" style="background: #067ec1; margin: 0px; text-align: center; min-height: 74px;">
|
||||
<a href="{{ url('/dashboard') }}">
|
||||
<img src="{{ public_asset('/assets/admin/img/logo_blue_bg.svg') }}" width="110px" style="">
|
||||
<img src="{{ public_asset('/assets/img/logo_blue_bg.svg') }}" width="110px" style="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -5,25 +5,24 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
|
||||
|
||||
<title>@yield('title') - {{ config('app.name') }}</title>
|
||||
{{-- Start of required lines block. DON'T REMOVE THESE LINES! They're required or might break things --}}
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="api-key" content="{{ Auth::check() ? Auth::user()->api_key: '' }}">
|
||||
{{-- End the required lines block --}}
|
||||
|
||||
<title>@yield('title') - {{ config('app.name') }}</title>
|
||||
|
||||
<link rel="shortcut icon" type="image/png" href="{{ public_asset('/assets/frontend/img/favicon.png') }}"/>
|
||||
<link rel="shortcut icon" type="image/png" href="{{ public_asset('/assets/img/favicon.png') }}"/>
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet"/>
|
||||
<link href="{{ public_asset('/assets/frontend/css/bootstrap.min.css') }}" rel="stylesheet"/>
|
||||
<link href="{{ public_asset('/assets/frontend/css/now-ui-kit.css') }}" rel="stylesheet"/>
|
||||
<link href="{{ public_asset('/assets/frontend/css/styles.css') }}" rel="stylesheet"/>
|
||||
|
||||
{{-- This is required to include --}}
|
||||
<link href="{{ public_asset('/assets/system/css/vendor.css') }}" rel="stylesheet"/>
|
||||
|
||||
{{-- Start of the required files in the head block --}}
|
||||
<link href="{{ public_asset('/assets/global/css/vendor.css') }}" rel="stylesheet"/>
|
||||
@yield('css')
|
||||
@yield('scripts_head')
|
||||
{{-- End of the required stuff in the head block --}}
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navbar -->
|
||||
@@ -39,7 +38,7 @@
|
||||
</button>
|
||||
<p class="navbar-brand text-white" data-placement="bottom" target="_blank">
|
||||
<a href="{{ url('/') }}">
|
||||
<img src="{{ public_asset('/assets/frontend/img/logo_blue_bg.svg') }}" width="135px" style=""/>
|
||||
<img src="{{ public_asset('/assets/img/logo_blue_bg.svg') }}" width="135px" style=""/>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
@@ -78,11 +77,8 @@
|
||||
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
|
||||
|
||||
{{-- Start of the required tags block. Don't remove these or things will break!! --}}
|
||||
{{--<script src="{{ public_asset('/assets/frontend/js/manifest.js') }}"></script>
|
||||
<script src="{{ public_asset('/assets/frontend/js/vendor.js') }}"></script>--}}
|
||||
<script src="{{ public_asset('/assets/system/js/vendor.js') }}"></script>
|
||||
<script src="{{ public_asset('/assets/global/js/vendor.js') }}"></script>
|
||||
<script src="{{ public_asset('/assets/frontend/js/app.js') }}"></script>
|
||||
|
||||
@yield('scripts')
|
||||
{{-- End the required tags block --}}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user