文件还在测试中

This commit is contained in:
2026-08-08 15:53:53 +08:00
parent 5f1e7adb64
commit 8101177cb5
241 changed files with 18074 additions and 22 deletions
+23
View File
@@ -0,0 +1,23 @@
<section class="page-hero">
<div class="container">
<h1>新闻动态</h1>
<p>产品发布、技术科普与行业案例</p>
</div>
</section>
<section class="section" style="padding-top:20px">
<div class="container">
<div class="news-grid">
<?php foreach ($news as $n): ?>
<a class="news-card reveal" href="<?php echo site_url('news/' . $n['slug']); ?>">
<div class="news-thumb" style="background:<?php echo gradient($n['id']); ?>">📰</div>
<div class="news-body">
<div class="news-date"><?php echo e(format_date($n['published_at'])); ?> · <?php echo e($n['author']); ?></div>
<div class="news-title"><?php echo e($n['title']); ?></div>
<div class="news-sum"><?php echo e($n['summary']); ?></div>
</div>
</a>
<?php endforeach; ?>
</div>
<?php if (empty($news)): ?><p style="color:var(--c-muted)">暂无新闻。</p><?php endif; ?>
</div>
</section>
+36
View File
@@ -0,0 +1,36 @@
<?php
$n = $n ?? null;
$layoutArr = [];
if (!empty($n['layout'])) { $d = json_decode($n['layout'], true); if (is_array($d)) $layoutArr = $d; }
// 模式渲染:可视化编辑(builder)且有 layout → 画布;否则固定版式(正文富文本)
$useBuilder = !empty($layoutArr) && ($n['mode'] ?? '') !== 'fixed';
?>
<section class="page-hero">
<div class="container">
<h1><?php echo e($n['title']); ?></h1>
<p><?php echo e(format_date($n['published_at'])); ?> · <?php echo e($n['author']); ?></p>
</div>
</section>
<div class="container">
<nav class="breadcrumb"><a href="<?php echo site_url(); ?>">首页</a> / <a href="<?php echo site_url('news'); ?>">新闻动态</a> / <?php echo e($n['title']); ?></nav>
</div>
<?php if ($useBuilder): ?>
<?php echo \Core\View::buffer('parts/canvas', ['layout' => $layoutArr, 'item' => $n, 'module' => 'news']); ?>
<?php else: ?>
<section class="section" style="padding-top:10px">
<div class="container" style="max-width:780px">
<article class="detail-desc detail-rich" style="font-size:16px"><?php echo $n['content']; ?></article>
</div>
</section>
<?php endif; ?>
<section class="section" style="padding-top:0">
<div class="container" style="max-width:780px">
<div style="display:flex;justify-content:space-between;margin-top:40px;gap:12px;flex-wrap:wrap">
<?php if ($prev): ?><a class="btn btn-ghost" href="<?php echo site_url('news/' . $prev['slug']); ?>">← <?php echo e(mb_substr($prev['title'],0,14)); ?></a><?php else: ?><span></span><?php endif; ?>
<?php if ($next): ?><a class="btn btn-ghost" href="<?php echo site_url('news/' . $next['slug']); ?>"><?php echo e(mb_substr($next['title'],0,14)); ?> →</a><?php else: ?><span></span><?php endif; ?>
</div>
<div style="text-align:center;margin-top:30px"><a class="more-link" href="<?php echo site_url('news'); ?>">返回新闻列表</a></div>
</div>
</section>