22 lines
835 B
PHP
22 lines
835 B
PHP
<?php
|
|
/** @var array $p */
|
|
$layout = [];
|
|
if (!empty($p['layout'])) {
|
|
$dec = json_decode($p['layout'], true);
|
|
if (is_array($dec)) $layout = $dec;
|
|
}
|
|
?>
|
|
<?php if (!empty($layout)): ?>
|
|
<?php echo \Core\View::buffer('parts/canvas', ['layout' => $layout, 'item' => $p, 'module' => 'page']); ?>
|
|
<?php else: ?>
|
|
<section class="page-hero">
|
|
<div class="container"><h1><?php echo e($p['title']); ?></h1></div>
|
|
</section>
|
|
<section class="section" style="padding-top:24px">
|
|
<div class="container" style="max-width:860px">
|
|
<article class="detail-desc" style="font-size:16px;line-height:1.95"><?php echo $p['content']; ?></article>
|
|
<div style="text-align:center;margin-top:36px"><a class="btn btn-primary magnetic" href="<?php echo site_url('contact'); ?>">联系我们</a></div>
|
|
</div>
|
|
</section>
|
|
<?php endif; ?>
|