22 lines
482 B
PHP
22 lines
482 B
PHP
|
@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">Vejledninger</h1>
|
||
|
@foreach($guides as $guide)
|
||
|
<h2 class="text-center sde-blue mt-0">{{ $guide->name }}</h2>
|
||
|
{!! $guide->guideArticles !!}
|
||
|
<hr class="w-100">
|
||
|
@endforeach
|
||
|
</main>
|
||
|
@endsection
|