@php $pageTitle = ($archiveTitle ?? $category->name ?? '文章列表').' - '.$siteName; @endphp @include('partials.head') @include('partials.header')

{{ $archiveTitle ?? ($category->name ?? '文章列表') }}

@forelse($posts as $post) @include('partials.post-card', ['post' => $post]) @empty
该分类暂无文章
@endforelse @include('partials.pagination', ['paginator' => $posts])
@include('partials.sidebar')
{{-- #page --}} @include('partials.footer') @stack('theme:body_end')