neuschwanstein-theme/content/master.blade.php

27 lines
836 B
PHP
Raw Normal View History

2023-05-07 08:16:32 +00:00
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
2023-05-07 17:25:05 +00:00
<title></title>
2023-05-07 08:16:32 +00:00
@include('template.'.config('settings.template').'.content.includes.css')
@include('template.'.config('settings.template').'.content.includes.integrations')
@if(isset($_COOKIE["cookies-consent"]) && $_COOKIE["cookies-consent"])
<!-- User accepted cookies -->
@else
<!-- User not accepted cookies -->
2023-05-07 17:25:05 +00:00
@endif
2023-05-07 08:16:32 +00:00
</head>
2023-05-07 17:25:05 +00:00
<body>
@include('template.'.config('settings.template').'.content.includes.nav')
2023-05-07 08:16:32 +00:00
@yield('content')
2023-05-07 17:25:05 +00:00
@include('template.'.config('settings.template').'.content.includes.cookies')
2023-05-07 08:16:32 +00:00
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
2023-05-07 17:25:05 +00:00
2023-05-07 08:16:32 +00:00
</body>
</html>