finkenhammer-theme/content/master.blade.php

40 lines
1.1 KiB
PHP
Raw Normal View History

2020-10-19 13:50:01 +00:00
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2020-09-30 09:01:51 +00:00
<head>
<meta charset="utf-8">
2020-10-19 13:50:01 +00:00
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>{{ \Setting::get('name')}}</title>
2020-09-30 09:01:51 +00:00
@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
2020-10-19 13:50:01 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.css')
2020-09-30 09:01:51 +00:00
2020-10-19 13:50:01 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.integrations')
2020-09-30 09:01:51 +00:00
</head>
<body>
2020-10-19 13:50:01 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.header')
2020-09-30 09:01:51 +00:00
@yield('content')
2020-10-19 13:50:01 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.footer')
2020-09-30 09:01:51 +00:00
2020-10-19 13:50:01 +00:00
@include('template.'.\Setting::get('template', 'default').'.content.includes.scripts')
2020-09-30 09:01:51 +00:00
2020-10-19 13:50:01 +00:00
</body>
</html>