neuschwanstein-theme/content/master.blade.php

27 lines
836 B
PHP

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title></title>
@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 -->
@endif
</head>
<body>
@include('template.'.config('settings.template').'.content.includes.nav')
@yield('content')
@include('template.'.config('settings.template').'.content.includes.cookies')
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
</body>
</html>