kurbad-theme/content/master.blade.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2020-10-01 11:52:45 +00:00
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>{{ \Setting::get('name')}}</title>
@if (!empty(\Setting::get('favicon_image', '')))
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('uploads/' . \Setting::get('favicon_image', '')) }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('uploads/' . \Setting::get('favicon_image', '')) }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('uploads/' . \Setting::get('favicon_image', '')) }}">
@endif
@include('template.'.\Setting::get('template', 'default').'.content.includes.css')
@include('template.'.\Setting::get('template', 'default').'.content.includes.integrations')
</head>
<body>
@include('template.'.\Setting::get('template', 'default').'.content.includes.header')
2020-09-24 08:31:09 +00:00
@yield('content')
2020-10-01 11:52:45 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.footer')
@include('template.'.\Setting::get('template', 'default').'.content.includes.scripts')
</body>
</html>