45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{{ config('app.name') }} - @yield('htmlheader_title', 'Your title here')</title>
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('/css/app.css') }}">
|
|
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="{{ asset('/plugin/font-awesome/css/font-awesome.min.css') }}">
|
|
<!-- IonIcons -->
|
|
<link rel="stylesheet" href="{{ request()->getScheme() }}://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
|
|
|
<!-- Google Font: Source Sans Pro -->
|
|
<link href="{{ request()->getScheme() }}://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
|
|
|
@if(file_exists('css/social.css'))
|
|
<!-- Social Logins -->
|
|
<link rel="stylesheet" href="{{ asset('/css/social.css') }}">
|
|
@endif
|
|
@if(file_exists('css/print.css'))
|
|
<!-- Printing Modifications -->
|
|
<link rel="stylesheet" href="{{ asset('/css/print.css') }}">
|
|
@endif
|
|
|
|
<!-- 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/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
<!-- STYLESHEETS -->
|
|
{!! Asset::styles() !!}
|
|
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="{{ asset('/css/adminlte.min.css') }}">
|
|
|
|
@if(file_exists('css/fixes.css'))
|
|
<!-- CSS Fixes -->
|
|
<link rel="stylesheet" href="{{ asset('/css/fixes.css') }}">
|
|
@endif
|
|
</head>
|