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

51 lines
1.7 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-06-24 07:25:59 +00:00
{{-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">--}}
2020-06-15 06:56:21 +00:00
<link type="text/css" rel="stylesheet" href="{{ mix("/css/webapp.css") }}">
2020-06-08 13:08:46 +00:00
</head>
2020-06-23 13:32:42 +00:00
<body>
2020-06-24 07:25:59 +00:00
{{-- @yield("header")--}}
<header class="row align-items-center">
<img class="w-50" id="sdeLogo" src="{{URL::asset('/images/logos/Logo-normal.svg')}}" alt="Syddansk Erhvervsskole">
2020-06-25 13:11:59 +00:00
<button class="ml-auto" id="toggle">
2020-06-24 07:25:59 +00:00
{{-- <img src="{{URL::asset('/images/icons/icon.svg')}}" id="menuIcon" alt="-">--}}
<i class="fas fa-bars"></i>
</button>
</header>
<div class="d-none bg-sde-blue col" id="menu">
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">
Menuplan
</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">
Aktiviteter
</a>
2020-06-26 11:14:02 +00:00
<a href="{{ route("washing-reservations.index") }}">
<img src="{{URL::asset('/images/icons/Vaske booking liste.svg')}}" alt="Reservationer">
Reservationer
2020-06-24 07:25:59 +00:00
</a>
2020-06-26 11:14:02 +00:00
<a href="#">
2020-06-24 07:25:59 +00:00
<img src="{{URL::asset('/images/icons/Galleri.svg')}}" alt="Galleri">
Galleri
</a>
2020-06-26 11:14:02 +00:00
<a href="#">
2020-06-24 07:25:59 +00:00
<img src="{{URL::asset('/images/icons/Kontoret.svg')}}" alt="Kontoret">
Kontoret
</a>
2020-06-29 06:13:53 +00:00
<a href="">
2020-06-24 07:25:59 +00:00
<img src="{{URL::asset('/images/icons/Vagttelefon-hvid.svg')}}" alt="Vagttelefon">
Vagttelefon
</a>
</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>