{!! $page->body !!}
@extends('layouts.master') @section('title', $page->title . ' | ' . setting('site.title')) @php // module.css scopes page-specific rules under one of these classes on the // page's top-level container (previously set as a hardcoded
class). $pageCssClass = match ($page->slug) { 'approach' => 'mission-vision', 'values' => 'our-values', default => '', }; // Seeded pages listed here already ship their own container/row/col // markup inside body, so wrapping them again would double-constrain // their width. Anything else (including pages created fresh via the // Voyager WYSIWYG editor, which have no markup at all) gets boxed. $selfContainedSlugs = [ 'approach', 'values', 'forest-protection', 'agro-forestry', 'urban-biodiversity', 'human-elephant-conflict-prevention', 'climate-change-education', 'our-technology', 'our-mistakes', 'playbooks-learnings', 'grievances', 'terms-of-service', 'privacy-policy', 'donation-policy', ]; $wrapBody = !in_array($page->slug, $selfContainedSlugs, true); @endphp @section('content')