feat: 文章/分类/评论关联细节完善
- 文章列表:会员插件注入「付费」徽章列(会员/付费¥xx,停插件即消失) - 分类:真实文章数(withCount)、名称点击跳文章列表并按分类筛选(ListPosts booted 预置筛选) - 分类:新增封面(medialibrary)+ 介绍(description 字段/表单);前台分类页顶部展示介绍区;SEO description + BreadcrumbList 结构化数据(GEO) - 文章编辑:MarkdownEditor 内容区加大(26rem);文章编辑页新增「评论」关系管理页(可审/拒) - 评论列表:文章列带摘要 - 三套主题补 .category-intro 样式 - 测试更新(付费徽章列)
This commit is contained in:
@@ -167,3 +167,9 @@ a:hover { color: #f60; text-decoration: underline; }
|
||||
/* 已解锁的付费内容块 */
|
||||
.paid-content { border: 1px dashed #f5c6cb; border-left: 4px solid #f60; background: #fff8f0; border-radius: 6px; padding: 12px 14px; margin: 12px 0; }
|
||||
.paid-content-label { font-size: 12px; color: #f60; font-weight: 700; margin-bottom: 6px; }
|
||||
|
||||
/* 分类页介绍区 */
|
||||
.category-intro { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; }
|
||||
.category-cover { width: 120px; height: 80px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
|
||||
.category-description { margin: 0 0 6px; font-size: 14px; color: #555; line-height: 1.7; }
|
||||
.category-meta { margin: 0; font-size: 12px; color: #999; }
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
@php
|
||||
$pageTitle = ($archiveTitle ?? $category->name ?? '文章列表').' - '.$siteName;
|
||||
$pageDescription = $category->description ?? ($archiveTitle ?? $category->name ?? '文章列表').' - '.$siteName;
|
||||
@endphp
|
||||
@include('partials.head')
|
||||
<body>
|
||||
@@ -8,6 +9,21 @@
|
||||
<main id="content">
|
||||
<h1 class="list-title">{{ $archiveTitle ?? ($category->name ?? '文章列表') }}</h1>
|
||||
|
||||
@if(isset($category) && ($category->description || $category->getFirstMedia('cover')))
|
||||
<div class="category-intro">
|
||||
@if($cover = $category->getFirstMedia('cover'))
|
||||
<img src="{{ $cover->getUrl() }}" alt="{{ $category->name }}" class="category-cover">
|
||||
@endif
|
||||
<div>
|
||||
@if($category->description)
|
||||
<p class="category-description">{{ $category->description }}</p>
|
||||
@endif
|
||||
<p class="category-meta">{{ $category->posts_count ?? $posts->total() }} 篇文章</p>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
@forelse($posts as $post)
|
||||
@include('partials.post-card', ['post' => $post])
|
||||
@empty
|
||||
|
||||
Reference in New Issue
Block a user