Ekapp/skolehjem/resources/views/app/users/index.blade.php

37 lines
1.8 KiB
PHP
Raw Normal View History

2020-06-24 07:25:59 +00:00
@extends('app.layout.base')
2020-06-15 06:56:21 +00:00
@section('content')
2020-08-05 06:32:27 +00:00
<main id="main" style="justify-content: space-between;">
2020-06-29 07:28:57 +00:00
<div class="d-flex col block-container mt-2">
2020-08-06 13:31:38 +00:00
<a href="{{ route('menu-plans.index') }}" class="block text-center mb-1">{{ __('msg.menuplan') }}</a>
<a href="{{ route('events.index') }}" class="block text-center mb-1">{{ __('msg.aktiviteter') }}</a>
<a href="{{ route('washing-reservations.appindex') }}" class="block text-center mb-1">{{ __('msg.reservationer') }}</a>
<a href="{{ route('contacts.index') }}" class="block text-center mb-1">{{ __('msg.kontoret') }}</a>
<a href="{{ route('phones.index') }}" class="block text-center mb-1">{{ __('msg.vagttelefon') }}</a>
<a href="{{ route('guides.index') }}" class="block text-center mb-1">{{ __('msg.vejledning') }}</a>
2020-06-29 07:28:57 +00:00
</div>
2020-08-05 06:32:27 +00:00
<div class="row" style="align-self: center; margin: 8px 0 8px 0;">
2020-07-27 12:58:56 +00:00
<a href="https://www.facebook.com" target="_blank" class="link">
2020-06-29 07:28:57 +00:00
<img src="{{ URL::asset('/images/icons/facebook-icon.png') }}" class="h-100" alt="Facebook">
</a>
2020-07-27 12:58:56 +00:00
<a href="https://www.youtube.com" target="_blank" class="link">
2020-06-29 07:28:57 +00:00
<img src="{{ URL::asset('/images/icons/yt.png') }}" class="h-100" alt="Youtube">
</a>
2020-07-27 12:58:56 +00:00
<a href="https://www.instagram.com" target="_blank" class="link">
2020-06-29 07:28:57 +00:00
<img src="{{ URL::asset('/images/icons/instagram.png') }}" class="h-100" alt="Instagram">
</a>
2020-08-05 08:27:07 +00:00
</div>
2020-06-29 07:28:57 +00:00
</main>
2020-06-15 06:56:21 +00:00
@endsection
2020-08-05 06:32:27 +00:00
@section('scripts')
<script>
function mainHeight() {
document.getElementById('main').style.height = (window.innerHeight - document.getElementById('header').clientHeight) + "px";
}
window.onresize = mainHeight;
mainHeight();
</script>
@endsection