@extends('layouts.app') @section('title', $seoData['seo_title'] ?? $main_page->title . ' - stempire') @section('meta_description', $seoData['seo_description'] ?? 'Learn more about ' . $main_page->title . ' on stempire educational platform.') @section('meta_keywords', $seoData['seo_keywords'] ?? 'stempire, education, courses, ' . strtolower($main_page->title)) @section('og_image', $main_page->thumbnail ? asset('storage/' . $main_page->thumbnail) : asset('favicon.svg')) @section('content')
@include('partials.inner_header' , ['main_page' => $main_page])
@if (!empty($main_page->texteditor))
{!! $main_page->texteditor !!}
@endif @include('templates.inner.' .$template , ['item' => $main_page])
@endsection