2026-03-04 20:46:11 +00:00
|
|
|
<?php
|
|
|
|
|
$pageTitle = $title ?? 'Page';
|
|
|
|
|
$contentHtml = $content_html ?? '';
|
|
|
|
|
ob_start();
|
|
|
|
|
?>
|
|
|
|
|
<section class="card">
|
2026-03-05 17:55:10 +00:00
|
|
|
<div class="page-content" style="margin-top:14px; color:var(--muted); line-height:1.8;">
|
2026-03-04 20:46:11 +00:00
|
|
|
<?= $contentHtml ?>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<?php
|
|
|
|
|
$content = ob_get_clean();
|
|
|
|
|
require __DIR__ . '/../../../../views/site/layout.php';
|