@extends('layouts.public') @section('title', $page['title'] . ' | ' . $siteSettings['name']) @section('content')
← Back to Home

{{ $page['title'] }}

@foreach(explode("\n\n", $page['content']) as $paragraph) @if(preg_match('/^\d+\.\s+/', $paragraph))
@foreach(explode("\n", $paragraph) as $line)

{!! nl2br(e($line)) !!}

@endforeach
@else

{!! nl2br(e($paragraph)) !!}

@endif @endforeach
@endsection