2020-06-08 13:08:46 +00:00
|
|
|
<!DOCTYPE html>
|
2020-06-11 12:52:15 +00:00
|
|
|
<html lang="en">
|
2020-06-08 13:08:46 +00:00
|
|
|
<head>
|
2020-06-09 06:38:05 +00:00
|
|
|
<title>@yield("title")</title>
|
2020-06-11 12:52:15 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-08-10 12:53:49 +00:00
|
|
|
@if(request()->cookie("mode") == "dark")
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webappdark.css") }}">
|
|
|
|
@else
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
|
|
|
|
@endif
|
2020-08-11 13:08:09 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function setMain() {
|
|
|
|
var main = document.getElementsByTagName("main")[0];
|
|
|
|
var header = document.getElementsByTagName("header")[0];
|
|
|
|
main.style.minHeight = 'calc(100% - ' + header.clientHeight + 'px)';
|
|
|
|
}
|
|
|
|
</script>
|
2020-06-08 13:08:46 +00:00
|
|
|
</head>
|
2020-08-11 07:55:01 +00:00
|
|
|
<body onresize="setMain()" onload="setMain()">
|
2020-08-05 08:27:07 +00:00
|
|
|
<header class="row align-items-center" id="header">
|
2020-08-10 12:53:49 +00:00
|
|
|
@if(request()->cookie("mode") == "dark")
|
|
|
|
<img class="w-50" id="sdeLogo" src="{{URL::asset('/images/logos/Logo-hvid.svg')}}" onclick="location.href = '{{ route("root.index") }}';" alt="Syddansk Erhvervsskole">
|
|
|
|
@else
|
|
|
|
<img class="w-50" id="sdeLogo" src="{{URL::asset('/images/logos/Logo-normal.svg')}}" onclick="location.href = '{{ route("root.index") }}';" alt="Syddansk Erhvervsskole">
|
|
|
|
@endif
|
2020-06-25 13:11:59 +00:00
|
|
|
<button class="ml-auto" id="toggle">
|
2020-08-10 13:19:53 +00:00
|
|
|
<i id="icon" class="fas fa-bars" style="color: black;"></i>
|
2020-06-24 07:25:59 +00:00
|
|
|
</button>
|
|
|
|
</header>
|
|
|
|
<div class="d-none bg-sde-blue col" id="menu">
|
2020-06-29 07:21:17 +00:00
|
|
|
<a href="{{ route("root.index") }}">
|
2020-07-30 06:41:09 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Home.svg')}}" alt="Home">
|
2020-06-29 07:21:17 +00:00
|
|
|
Home
|
|
|
|
</a>
|
|
|
|
|
2020-06-26 11:14:02 +00:00
|
|
|
<a href="{{ route("menu-plans.index") }}">
|
2020-06-24 07:25:59 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Menuplan.svg')}}" alt="Menuplan">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.menuplan') }}
|
2020-06-24 07:25:59 +00:00
|
|
|
</a>
|
2020-06-26 11:14:02 +00:00
|
|
|
<a href="{{ route("events.index") }}">
|
2020-06-24 07:25:59 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Aktiviteter.svg')}}" alt="Aktiviteter">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.aktiviteter') }}
|
2020-06-24 07:25:59 +00:00
|
|
|
</a>
|
2020-08-03 10:57:14 +00:00
|
|
|
<a href="{{ route("washing-reservations.appindex") }}">
|
2020-06-26 06:56:18 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Vaske booking liste.svg')}}" alt="Reservationer">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.reservationer') }}
|
2020-06-24 07:25:59 +00:00
|
|
|
</a>
|
2020-06-29 07:21:17 +00:00
|
|
|
{{-- MÅ IKKE SLETTES!!!! --}}
|
2020-07-27 08:31:57 +00:00
|
|
|
{{-- <a href="# ">--}}
|
2020-06-29 07:21:17 +00:00
|
|
|
{{-- <img src="{{URL::asset('/images/icons/Galleri.svg')}}" alt="Galleri">--}}
|
|
|
|
{{-- Galleri--}}
|
|
|
|
{{-- </a>--}}
|
2020-07-01 09:44:14 +00:00
|
|
|
<a href="{{ route("contacts.index") }}">
|
2020-08-11 10:37:31 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Kontoret.svg')}}" alt="Kontakter">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.kontoret') }}
|
2020-06-24 07:25:59 +00:00
|
|
|
</a>
|
2020-06-29 07:21:17 +00:00
|
|
|
<a href="{{ route("phones.index") }}">
|
2020-06-24 07:25:59 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Vagttelefon-hvid.svg')}}" alt="Vagttelefon">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.vagttelefon') }}
|
2020-06-24 07:25:59 +00:00
|
|
|
</a>
|
2020-08-04 11:21:23 +00:00
|
|
|
<a href="{{ route("guides.index") }}">
|
2020-08-04 15:06:46 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Vejledninger.svg')}}" alt="Guide">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.vejledning') }}
|
2020-08-04 11:21:23 +00:00
|
|
|
</a>
|
2020-08-05 06:32:27 +00:00
|
|
|
<a href="{{ route("users.account") }}">
|
|
|
|
<img src="{{URL::asset('/images/icons/user-hvid.svg')}}" alt="Konto">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.konto') }}
|
2020-08-05 06:32:27 +00:00
|
|
|
</a>
|
2020-08-11 10:37:31 +00:00
|
|
|
<a href="{{ route("settings.index") }}">
|
|
|
|
<img src="{{URL::asset('/images/icons/settings-hvid.svg')}}" alt="Indstillinger">
|
|
|
|
{{ __('msg.indstillinger') }}
|
|
|
|
</a>
|
2020-06-30 11:03:41 +00:00
|
|
|
<a href="{{ route('users.logout') }}">
|
2020-07-30 10:20:52 +00:00
|
|
|
<img src="{{URL::asset('/images/icons/Logout.svg')}}" alt="Logud">
|
2020-08-06 13:31:38 +00:00
|
|
|
{{ __('msg.logud') }}
|
2020-06-30 11:03:41 +00:00
|
|
|
</a>
|
2020-06-24 07:25:59 +00:00
|
|
|
</div>
|
|
|
|
@yield("content")
|
|
|
|
<script src="{{ mix("/js/app.js") }}"></script>
|
2020-08-10 13:19:53 +00:00
|
|
|
@if(request()->cookie("mode") == "dark")
|
|
|
|
<script type="text/javascript">
|
|
|
|
function toggleMenu(menu) {
|
|
|
|
let menuElement = document.getElementById(menu);
|
|
|
|
let logoElement = document.getElementById("sdeLogo");
|
|
|
|
let htmlElement = document.getElementsByTagName('html')[0];
|
2020-08-11 07:13:48 +00:00
|
|
|
let bodyElement = document.getElementsByTagName('body')[0];
|
2020-08-10 13:19:53 +00:00
|
|
|
let mainElement = document.getElementsByTagName('main')[0];
|
|
|
|
let iconElement = document.getElementById("icon");
|
|
|
|
let headerElement = document.getElementById("header");
|
|
|
|
|
|
|
|
if(menuElement.classList.contains("hide")) {
|
|
|
|
menuElement.classList.remove("hide");
|
|
|
|
mainElement.classList.remove("d-none");
|
|
|
|
htmlElement.style.backgroundColor = '';
|
2020-08-11 07:13:48 +00:00
|
|
|
bodyElement.style.backgroundColor = '#666666';
|
2020-08-10 13:19:53 +00:00
|
|
|
logoElement.src = '/images/logos/Logo-hvid.svg';
|
|
|
|
iconElement.classList.remove("fa-times");
|
|
|
|
iconElement.classList.add("fa-bars");
|
|
|
|
headerElement.style.backgroundColor = '';
|
|
|
|
} else {
|
|
|
|
menuElement.classList.add("hide");
|
|
|
|
mainElement.classList.add("d-none");
|
|
|
|
htmlElement.style.backgroundColor = 'rgb(0, 120, 138)';
|
2020-08-11 07:13:48 +00:00
|
|
|
bodyElement.style.backgroundColor = 'rgb(0, 120, 138)';
|
2020-08-10 13:19:53 +00:00
|
|
|
logoElement.src = '/images/logos/Logo-hvid.svg';
|
|
|
|
iconElement.classList.remove("fa-bars");
|
|
|
|
iconElement.classList.add("fa-times");
|
|
|
|
headerElement.style.backgroundColor = 'rgb(0, 120, 138)';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(document.getElementById("toggle"))
|
|
|
|
document.getElementById("toggle").onclick = function () {
|
|
|
|
toggleMenu('menu');
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
@endif
|
2020-08-11 13:08:09 +00:00
|
|
|
@yield("scripts")
|
2020-06-08 13:08:46 +00:00
|
|
|
</body>
|
|
|
|
</html>
|