2021-06-28 02:50:28 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<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="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
|
|
<!-- Font Awesome Icons -->
|
|
|
|
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.15.3/css/all.css">
|
|
|
|
{{--
|
|
|
|
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.15.3/css/v4-shims.css">
|
|
|
|
--}}
|
|
|
|
|
|
|
|
<!-- Theme style -->
|
2021-11-23 06:30:20 +00:00
|
|
|
@asset('css/components.css')
|
|
|
|
@asset('css/style.css')
|
|
|
|
@asset('css/style-responsive.css')
|
|
|
|
@asset('css/themes/blue.css')
|
2021-06-28 02:50:28 +00:00
|
|
|
|
|
|
|
<!-- Google Font: Source Sans Pro -->
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|PT+Sans+Narrow|Source+Sans+Pro:200,300,400,600,700,900&subset=all" rel="stylesheet" type="text/css">
|
|
|
|
|
|
|
|
<meta property="og:site_name" content="{{ config('app.name') }}" />
|
2021-07-01 23:09:31 +00:00
|
|
|
<meta property="og:title" content="{{ $site->site_name }}" />
|
|
|
|
<meta property="og:description" content="{{ $site->site_description }}" />
|
2021-06-28 02:50:28 +00:00
|
|
|
<meta property="og:type" content="website" />
|
2021-07-01 23:09:31 +00:00
|
|
|
<meta property="og:image" content="{{ $site->site_logo }}" />
|
2021-06-28 02:50:28 +00:00
|
|
|
<meta property="og:url" content="{{ url('/') }}" />
|
|
|
|
|
2021-07-01 23:09:31 +00:00
|
|
|
<link rel="shortcut icon" href="{{ object_get($site,'favicon','favicon.ico') }}" />
|
2021-06-28 02:50:28 +00:00
|
|
|
|
|
|
|
<!-- Custom CSS -->
|
2021-11-23 06:30:20 +00:00
|
|
|
@asset('css/custom.css')
|
2021-06-28 02:50:28 +00:00
|
|
|
|
|
|
|
<!-- STYLESHEETS -->
|
|
|
|
{!! Asset::styles() !!}
|
|
|
|
|
|
|
|
@yield('page-styles')
|
2021-11-23 06:30:20 +00:00
|
|
|
</head>
|