feat: 插件/主题管理卡片改用 Filament 原生组件+中文页面标题;注入点分三组管理(页面/侧边栏/文章);前台 sablog 主题全面语义化(header/nav/main/aside/section/footer)

This commit is contained in:
ak
2026-08-11 23:43:41 +08:00
parent ef8ec75e83
commit 489a145259
44 changed files with 131 additions and 84 deletions
@@ -1,11 +1,11 @@
<div id="outmain">
<div id="header">
<header id="header">
<div class="logo">
<a href="{{ route('home') }}">{{ $siteName }}</a>
<p class="description">{{ $siteDescription }}</p>
</div>
@stack('theme:header')
<div id="nav">
<nav id="nav">
<ul>
<li class="{{ request()->routeIs('home') ? 'current_page_item' : '' }}"><a href="{{ route('home') }}">首页</a></li>
<li class="{{ request()->routeIs('archives*') ? 'current_page_item' : '' }}"><a href="{{ route('archives') }}">归档</a></li>
@@ -26,5 +26,5 @@
<li><a href="{{ route('register') }}">注册</a></li>
@endauth
</ul>
</div>
</div>
</nav>
</header>