@extends('layouts.app') @php $routeLocale = in_array(request()->segment(1), ['de', 'en'], true) ? request()->segment(1) : 'de'; $tr = fn ($de, $en) => $routeLocale === 'en' ? $en : $de; @endphp @section('title', $site['title'] . ' — ' . $topic['label'] . ' | KOTSCH.TECH') @section('meta_description', $site['description']) @php($gated = $gated ?? false) @if($gated) @push('head') @endpush @endif @section('content')

{{ $site['title'] }}

{!! $site['body'] !!}
@if($gated) @else {{-- Werbung: fixe Seiten-Banner links/rechts (Desktop ≥1440px), sonst Inline-Banner. Nutzt das bestehende, consent-gated AdSense-System (config/adsense.php). --}} @include('tools._ads_banner')

{{ $tr('Zurück zu', 'Back to') }} {{ $topic['label'] }}

@endif
@endsection