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

59 lines
2.1 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">
2020-09-01 14:17:33 +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() }}">
2022-08-01 03:59:01 +00:00
{{--
<!-- Included in adminlte -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
--}}
<!-- Font Awesome Icons -->
2022-08-01 03:59:01 +00:00
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.15.4/css/all.css">
{{--
2022-08-01 03:59:01 +00:00
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.15.4/css/v4-shims.css">
--}}
<!-- Theme style -->
2022-08-01 03:59:01 +00:00
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/admin-lte@3.2.0/dist/css/adminlte.min.css">
<!-- Google Font: Source Sans Pro -->
2020-05-26 01:26:00 +00:00
<link href="https://fonts.googleapis.com/css2?family={{ str_replace(' ','+',config('app.font') ?: 'IBM Plex Sans') }}:wght@300&display=swap" 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
{{--
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]-->
--}}
2018-04-23 07:45:21 +00:00
<!-- STYLESHEETS -->
{!! Asset::styles() !!}
2019-03-28 00:16:50 +00:00
@yield('page-styles')
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
2019-11-17 12:26:12 +00:00
@if(file_exists('css/custom.css'))
2019-10-30 06:31:32 +00:00
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ asset('css/custom.css') }}">
2019-10-30 06:31:32 +00:00
@endif
2020-09-01 14:17:33 +00:00
</head>