Ekapp/skolehjem/resources/views/app/layout/base.blade.php

74 lines
2.8 KiB
PHP
Raw Normal View History

2020-06-08 13:08:46 +00:00
<!DOCTYPE html>
<html lang="en">
2020-06-08 13:08:46 +00:00
<head>
2020-06-09 06:38:05 +00:00
<title>@yield("title")</title>
<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-06-08 13:08:46 +00:00
</head>
2020-06-23 13:32:42 +00:00
<body>
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-06-29 06:35:08 +00:00
<i id="icon" class="fas fa-bars"></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") }}">
<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") }}">
<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
{{-- 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>--}}
<a href="{{ route("contacts.index") }}">
2020-06-24 07:25:59 +00:00
<img src="{{URL::asset('/images/icons/Kontoret.svg')}}" alt="Kontoret">
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>
<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') }}
</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-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>
2020-06-23 13:32:42 +00:00
2020-06-24 07:25:59 +00:00
@yield("content")
2020-06-08 13:08:46 +00:00
2020-06-24 07:25:59 +00:00
<script src="{{ mix("/js/app.js") }}"></script>
@yield("scripts")
2020-06-08 13:08:46 +00:00
</body>
</html>