v0.7.3 - It now extends the layout
This commit is contained in:
parent
a9a9d42fb8
commit
e8278b7125
|
@ -1,71 +1,5 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>@yield("title")</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
@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
|
||||
</head>
|
||||
<body>
|
||||
<header class="row align-items-center" id="header">
|
||||
@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
|
||||
<button class="ml-auto" id="toggle">
|
||||
<i id="icon" class="fas fa-bars" style="color: black;"></i>
|
||||
</button>
|
||||
</header>
|
||||
<div class="d-none bg-sde-blue col" id="menu">
|
||||
<a href="{{ route("root.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Home.svg')}}" alt="Home">
|
||||
Home
|
||||
</a>
|
||||
|
||||
<a href="{{ route("menu-plans.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Menuplan.svg')}}" alt="Menuplan">
|
||||
Menuplan
|
||||
</a>
|
||||
<a href="{{ route("events.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Aktiviteter.svg')}}" alt="Aktiviteter">
|
||||
Aktiviteter
|
||||
</a>
|
||||
<a href="{{ route("washing-reservations.appindex") }}">
|
||||
<img src="{{URL::asset('/images/icons/Vaske booking liste.svg')}}" alt="Reservationer">
|
||||
Reservationer
|
||||
</a>
|
||||
<a href="{{ route("contacts.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Kontoret.svg')}}" alt="Kontoret">
|
||||
Kontoret
|
||||
</a>
|
||||
<a href="{{ route("phones.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Vagttelefon-hvid.svg')}}" alt="Vagttelefon">
|
||||
Vagttelefon
|
||||
</a>
|
||||
<a href="{{ route("guides.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/Vejledninger.svg')}}" alt="Guide">
|
||||
Vejledninger
|
||||
</a>
|
||||
<a href="{{ route("users.account") }}">
|
||||
<img src="{{URL::asset('/images/icons/user-hvid.svg')}}" alt="Konto">
|
||||
Konto
|
||||
</a>
|
||||
<a href="{{ route("settings.index") }}">
|
||||
<img src="{{URL::asset('/images/icons/settings-hvid.svg')}}" alt="Indstillinger">
|
||||
{{ __('msg.indstillinger') }}
|
||||
</a>
|
||||
<a href="{{ route('users.logout') }}">
|
||||
<img src="{{URL::asset('/images/icons/Logout.svg')}}" alt="Logud">
|
||||
Log Ud
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@extends("app.layout.base")
|
||||
@section("content")
|
||||
<style>
|
||||
div.card {
|
||||
margin-top: 1rem;
|
||||
|
@ -93,7 +27,6 @@
|
|||
padding-right: 8px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<main>
|
||||
@foreach(\App\News::query()->orderBy("created_at", "desc")->get() as $new)
|
||||
<div class="card">
|
||||
|
@ -111,8 +44,8 @@
|
|||
<p class="text-center">{{__('msg.ingennyheder')}}</p>
|
||||
@endif
|
||||
</main>
|
||||
<script src="{{ mix("/js/app.js") }}"></script>
|
||||
@yield("scripts")
|
||||
@endsection
|
||||
@section("scripts")
|
||||
@if(request()->cookie("mode") == "dark")
|
||||
<script type="text/javascript">
|
||||
function toggleMenu(menu) {
|
||||
|
@ -151,5 +84,4 @@
|
|||
};
|
||||
</script>
|
||||
@endif
|
||||
</body>
|
||||
</html>
|
||||
@endsection
|
||||
|
|
Loading…
Reference in New Issue