34 lines
693 B
PHP
34 lines
693 B
PHP
<?php
|
|
$favicon_path = setting('site_favicon');
|
|
?>
|
|
<!doctype html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ setting('seo_meta_title') }} - {{ $meta['title'] ?? ($settings->default_meta_title ?? config('app.name')) }}</title>
|
|
<meta name="description" content="{{ $meta['description'] ?? (setting('seo_meta_description') ?? '') }}">
|
|
<link rel="icon" href="{{ asset('storage/' . $favicon_path) }}">
|
|
|
|
<style>
|
|
<?php echo setting('custom_css') ?>
|
|
</style>
|
|
|
|
@stack('styles')
|
|
|
|
</head>
|
|
<body>
|
|
|
|
|
|
{{-- Main Content --}}
|
|
@yield('content')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|