You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
<!DOCTYPE html> |
|
<html lang="en" data-theme="dark"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
@if (session('ldap_authenticated')) |
|
<meta name="csrf-token" content="{{ csrf_token() }}"> |
|
@endif |
|
<title>@yield('title', config('app.name'))</title> |
|
<script src="{{ asset('js/theme-init.js') }}"></script> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="{{ asset('css/app-ui.css') }}"> |
|
@stack('head') |
|
</head> |
|
<body class="bg-slate-950 text-slate-100 min-h-screen flex flex-col"> |
|
<div class="flex-1 w-full"> |
|
@yield('content') |
|
</div> |
|
@hasSection('hide_footer') |
|
@else |
|
@include('partials.footer') |
|
@endif |
|
<script src="{{ asset('js/theme.js') }}"></script> |
|
@if (session('ldap_authenticated')) |
|
<script> |
|
window.__AUDIT_BEACON__ = { |
|
context: @json(route('audit.beacon.context')), |
|
pageView: @json(route('audit.beacon.page-view')), |
|
pageDuration: @json(route('audit.beacon.page-duration')), |
|
}; |
|
</script> |
|
<script src="{{ asset('js/audit-client.js') }}" defer></script> |
|
@endif |
|
@stack('scripts') |
|
</body> |
|
</html>
|
|
|