@extends('layouts.app') @section('content')
@include('partials.headers.single')
@if ($categories)
@foreach ($categories as $category) @include('partials.components.tag', [ 'name' => $category->name, 'url' => get_term_link($category->term_id), ]) @endforeach
@endif

@if ($content ?? false)
{!! $content !!}
@endif
@if ($pageCta ?? false) @include('partials.page-cta', ['section' => $pageCta]) @endif @endsection