File: D:/HostingSpaces/SBogers10/stempel.komma.pro/resources/views/site/components/pageTitle.blade.php
@php
if(empty($model)) $model = $page;
$heading_class = isset($intro_type) ? 'c-page-title--on-dark' : null;
$preheading_class = isset($intro_type) ? 'c-textbutton--on-dark' : null;
@endphp
<div class="c-page-title @if(isset($alignCenter)) c-page-title--center @endif {{$heading_class}}">
@if(!empty($backToLink) && !empty($backToLabel))
<div class="c-page-title__preheading">
<a class="c-textbutton c-textbutton--icon c-textbutton--is-reversed {{$preheading_class}}" href="{{$backToLink}}">
<span class="c-textbutton__text">{!! $backToLabel !!}</span>
<i class="c-textbutton__icon">@include('site.components.icons.arrow')</i>
</a>
</div>
@endif
<h1 class="c-page-title__heading">{{$model->translation->name}}</h1>
</div>