File: D:/HostingSpaces/blijegasten/blijegasten.be/resources/views/deposit/base.blade.php
<!doctype html>
<html lang="{{ \App::getLocale() }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0">
<title>Borgsysteem | Blije Gasten</title>
<meta name="csrf-token" content="{{ csrf_token() }}">
{{-- This will prevent devices from automatically generating phone links --}}
<meta name="format-detection" content="telephone=no">
<link href="{{ mix('css/style.css') }}" rel="stylesheet"/>
<link href="{{ mix('css/deposit.css') }}" rel="stylesheet"/>
@if(\App::environment() == 'production')
<script src="https://browser.sentry-cdn.com/5.13.0/bundle.min.js" integrity="sha384-ePH2Cp6F+/PJbfhDWeQuXujAbpil3zowccx6grtsxOals4qYqJzCjeIa7W2UqunJ" crossorigin="anonymous"></script>
<script>Sentry.init({ dsn: 'https://57082635b6524b98854895d407bd358e@sentry.komma.pro/3' });</script>
@endif
@include('site.components.favicons')
</head>
<body class="{{ !empty($baseViewClass) ? $baseViewClass : '' }}">
@if(\App::environment() == 'local')
{{-- <p style="margin: 0; position: fixed; z-index: 800; left: 0; bottom: 0; padding: 20px 10px; width: 100%; text-align: center; color: white; font-size: 14px; line-height: 1.2; font-weight: bold; background: red;">DIT IS EEN TEST OMGEVING</p>--}}
@if(config('site.show_grid'))
{{-- Grid overlay --}}
<div class="u-visible-grid l-grid">
<div class="u-visible-grid__main"></div>
</div>
@endif
@endif
@yield('base-content')
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Roboto Slab:700', 'Source Sans Pro: 400,400i,600,700,700i,900']
}
});
</script>
<script defer type="text/javascript" src="{{ mix('js/site/manifest.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/site/vendor.js') }}"></script>
<script defer type="text/javascript" src="{{ mix('js/site/deposit.js') }}"></script>
</body>
</html>