@extends('storefront.layout', ['title' => (config('app.name', 'Tstore')) . ' · ' . ($storeSettings['home_title_suffix'] ?? '扩展展示站')]) @section('hero')
{{ $storeSettings['home_eyebrow'] ?? 'Public Showcase' }}

{{ $storeSettings['home_headline'] ?? '更干净的 Typecho 扩展展示站' }}

{{ $storeSettings['home_lede'] ?? '前台只负责展示插件与主题的资料、分类、兼容性和截图,真正的发布、上传和站点接入都由服务端统一维护,信息层次更清楚。' }}

{{ $stats['packages'] }}已发布扩展
{{ $stats['plugins'] }}插件
{{ $stats['themes'] }}主题
{{ $stats['categories'] }}分类
@endsection @section('content')
Plugins

{{ $storeSettings['home_plugins_title'] ?? '推荐插件' }}

{{ $storeSettings['home_plugins_subtitle'] ?? '优先展示适合作为目录首页入口的插件,突出摘要、作者、分类和版本信息。' }}

查看全部
@forelse($featuredPlugins as $package) @include('storefront.partials.card', ['package' => $package, 'typeLabel' => '插件', 'fallback' => 'P']) @empty
当前还没有推荐插件。
@endforelse
Themes

{{ $storeSettings['home_themes_title'] ?? '推荐主题' }}

{{ $storeSettings['home_themes_subtitle'] ?? '主题列表保持同样的展示逻辑,方便在统一视觉下浏览不同类型的扩展内容。' }}

查看全部
@forelse($featuredThemes as $package) @include('storefront.partials.card', ['package' => $package, 'typeLabel' => '主题', 'fallback' => 'T']) @empty
当前还没有推荐主题。
@endforelse
@endsection