2020-08-07 10:48:08 +00:00
|
|
|
@extends("app.layout.base")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Vejledninger
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<style>
|
|
|
|
h2, h3, h4 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<main>
|
|
|
|
<h1 class="text-center sde-blue mt-0">{{__('msg.vejledning')}}</h1>
|
|
|
|
<div style="border: 4px solid rgba(0,0,0, 0.2); border-radius: 4px; padding: 4px; margin-top: 1.5rem">
|
|
|
|
<h2 class="text-center sde-blue mt-0">{{ $guide->name }}</h2>
|
|
|
|
{!!$guide->guide_articles!!}
|
|
|
|
</div>
|
2020-08-10 08:16:05 +00:00
|
|
|
<button onclick="window.history.back()" class="btn btn-sde-blue text-white mb-1 mt-1" >{{__('msg.tilbage')}}</button>
|
2020-08-07 10:48:08 +00:00
|
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@endsection
|