Initial dev export (exclude uploads/runtime)
This commit is contained in:
13
modules/pages/views/site/show.php
Normal file
13
modules/pages/views/site/show.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
$pageTitle = $title ?? 'Page';
|
||||
$contentHtml = $content_html ?? '';
|
||||
ob_start();
|
||||
?>
|
||||
<section class="card">
|
||||
<div style="margin-top:14px; color:var(--muted); line-height:1.8;">
|
||||
<?= $contentHtml ?>
|
||||
</div>
|
||||
</section>
|
||||
<?php
|
||||
$content = ob_get_clean();
|
||||
require __DIR__ . '/../../../../views/site/layout.php';
|
||||
Reference in New Issue
Block a user