leenooks/resources/themes/adminlte/views/layouts/partials/htmlheader.blade.php

50 lines
1.8 KiB
PHP
Raw Normal View History

2018-04-23 07:45:21 +00:00
<head>
<meta charset="UTF-8">
2018-08-01 06:28:10 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2018-05-08 05:13:31 +00:00
<title>{{ config('app.name') }} - @yield('htmlheader_title', 'Your title here')</title>
2018-04-23 07:45:21 +00:00
<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">
2019-03-28 00:16:50 +00:00
@if(file_exists('css/social.css'))
<!-- Social Logins -->
<link rel="stylesheet" href="{{ asset('/css/social.css') }}">
2019-03-28 00:16:50 +00:00
@endif
@if(file_exists('css/print.css'))
<!-- Printing Modifications -->
<link rel="stylesheet" href="{{ asset('/css/print.css') }}">
2019-03-28 00:16:50 +00:00
@endif
2018-04-23 07:45:21 +00:00
<!-- 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>
2018-04-23 07:45:21 +00:00
<![endif]-->
<!-- STYLESHEETS -->
{!! Asset::styles() !!}
2019-03-28 00:16:50 +00:00
<!-- Theme style -->
<link rel="stylesheet" href="{{ asset('/css/adminlte.min.css') }}">
2019-03-28 00:16:50 +00:00
@if(file_exists('css/fixes.css'))
2019-10-30 06:31:32 +00:00
<!-- CSS Fixes -->
<link rel="stylesheet" href="{{ asset('/css/fixes.css') }}">
2019-03-28 00:16:50 +00:00
@endif
2019-10-30 06:31:32 +00:00
@if(file_exists('css/fixes.css'))
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ asset('/css/custom.css') }}">
@endif
2018-08-01 06:28:10 +00:00
</head>