2020-08-04 11:21:23 +00:00
|
|
|
@extends("app.layout.base")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Vejledninger
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<style>
|
2020-08-10 11:26:48 +00:00
|
|
|
div.card {
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
width: auto;
|
|
|
|
heigt: auto;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.header {
|
|
|
|
background-color: #00788a;
|
|
|
|
color: white;
|
|
|
|
padding: 8px;
|
|
|
|
font-size: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.container {
|
|
|
|
padding: 8px;
|
|
|
|
text-align: justify;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol {
|
|
|
|
padding-right: 8px;
|
2020-08-04 11:21:23 +00:00
|
|
|
}
|
|
|
|
</style>
|
2020-08-11 07:13:48 +00:00
|
|
|
<main style="min-height: calc(100% - 61.34px);">
|
2020-08-11 11:16:54 +00:00
|
|
|
<h1 class="text-center sde-blue mt-0" style="margin-bottom: 2rem;">{{__('msg.vejledning')}}</h1>
|
2020-08-05 07:23:57 +00:00
|
|
|
@if(!$guides->isEmpty())
|
|
|
|
@foreach($guides as $guide)
|
2020-08-10 11:26:48 +00:00
|
|
|
<div class="card">
|
2020-08-12 10:49:05 +00:00
|
|
|
@if($guide->resource_id !== null)
|
2020-09-07 11:10:20 +00:00
|
|
|
<div class="header" style="background-size: cover; background-position: center; background-image: url('{{ asset(\App\Resource::query()->where("id", "=", $guide->resource_id)->first()->filename) }}');">
|
2020-08-13 13:28:20 +00:00
|
|
|
<h3 style="text-shadow: 2px 2px 2px #00788A;">{{ $guide->name}}</h3>
|
2020-08-10 11:26:48 +00:00
|
|
|
</div>
|
2020-08-12 10:49:05 +00:00
|
|
|
@else
|
|
|
|
<div class="header">
|
|
|
|
<h3>{{ $guide->name}}</h3>
|
|
|
|
</div>
|
|
|
|
@endif
|
2020-08-10 11:26:48 +00:00
|
|
|
<div class="container">
|
2020-08-31 09:56:05 +00:00
|
|
|
@php $tags = [ '<p>', '<b>', '<em>', '<a>', '<u>', '<s>', '<sub>', '<ul>', '<li>', '<sup>', '<div>', '<blockquote>', '<ol>', '<strong>', '<br>', '<h1>', '<h2>', '<h3>', '<h4>', '<h5>', '<h6>', '<h7>', '<span>'] @endphp
|
|
|
|
{!! \App\Helpers::closetags(substr(strip_tags($guide->guide_articles, $tags), 0, 300)) !!}
|
2020-08-12 13:17:48 +00:00
|
|
|
<div class="row" style="justify-content: center;">
|
|
|
|
<a style="margin: 0; padding: 0; text-align: center; font-weight: 700;" class="sde-blue" href="{{route("guides.show", ["guide" => $guide->id ])}}">{{__('msg.læsmere')}}</a>
|
|
|
|
</div>
|
2020-08-10 11:26:48 +00:00
|
|
|
</div>
|
2020-08-07 10:48:08 +00:00
|
|
|
</div>
|
2020-08-05 07:23:57 +00:00
|
|
|
@endforeach
|
2020-08-19 07:54:26 +00:00
|
|
|
{{ $guides->links() }}
|
2020-08-05 07:23:57 +00:00
|
|
|
@else
|
2020-08-11 07:55:01 +00:00
|
|
|
<p style="margin: 0 18px; margin-bottom: auto; text-align: center">{{__('msg.dereringenvejledninger')}}.</p>
|
2020-08-05 05:51:30 +00:00
|
|
|
@endif
|
2020-08-11 07:13:48 +00:00
|
|
|
<button onclick="window.history.back()" style="margin-top: auto;" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
|
2020-08-04 11:21:23 +00:00
|
|
|
</main>
|
|
|
|
@endsection
|