Files
laralog/resources/views/partials/sidebar.blade.php
T
gouki f5987e7cc2
Build and Deploy / verify (push) Successful in 1m6s
Build and Deploy / deploy (push) Successful in 41s
refactor(routes): canonical URLs now match sablog format exactly
- /show-{id}.shtml (comments page: /show-{id}-{page}.shtml)
- /category-{cid}.shtml / /category-{cid}-{page}.shtml
- /archives-{YYYYMM}.shtml / /archives-{YYYYMM}-{page}.shtml
- /tag/{name}, /tagslist.shtml, /index-{page}.shtml
- slug 时代的 /posts/{slug} 等旧格式全部 301 到 sablog 格式
2026-09-09 21:21:07 +00:00

89 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<aside class="sidebar">
@stack('theme:sidebar_top')
<section class="widget">
<h3 class="widget-title">分类</h3>
<ul class="widget-list">
@forelse($categories as $category)
<li>
<a href="{{ route('category.show', $category->id) }}">{{ $category->name }}</a>
<span class="count">({{ $category->post_count }})</span>
</li>
@empty
<li>暂无分类</li>
@endforelse
</ul>
</section>
<section class="widget">
<h3 class="widget-title">最新文章</h3>
<ul class="widget-list">
@forelse($recentPosts as $post)
<li><a href="{{ route('posts.show', $post->id) }}">{{ $post->title }}</a></li>
@empty
<li>暂无文章</li>
@endforelse
</ul>
</section>
<section class="widget">
<h3 class="widget-title">最新评论</h3>
<ul class="widget-list">
@forelse($recentComments as $comment)
<li>
<a href="{{ route('posts.show', $comment->post->id) }}#comment-{{ $comment->id }}">
{{ $comment->author_name }}{{ Str::limit(strip_tags($comment->content), 30) }}
</a>
</li>
@empty
<li>暂无评论</li>
@endforelse
</ul>
</section>
<section class="widget">
<h3 class="widget-title">标签云</h3>
<div class="tag-cloud">
@forelse($hotTags as $tag)
<a href="{{ route('tags.show', $tag->name) }}" class="tag-link">{{ $tag->name }}</a>
@empty
<span>暂无标签</span>
@endforelse
</div>
</section>
<section class="widget">
<h3 class="widget-title">友情链接</h3>
<ul class="widget-list">
@forelse($links as $link)
<li><a href="{{ tracked_url($link->url) }}" target="_blank" rel="noopener">{{ $link->name }}</a></li>
@empty
<li>暂无链接</li>
@endforelse
</ul>
</section>
<section class="widget">
<h3>社交账号</h3>
<ul class="social-links">
@foreach($socialLinks as $social)
@if($social['url'])
<li><a href="{{ $social['url'] }}" target="_blank" rel="noopener nofollow">{{ $social['platform'] }}</a></li>
@else
<li>{{ $social['platform'] }}{{ $social['value'] }}</li>
@endif
@endforeach
</ul>
</section>
<section class="widget">
<h3 class="widget-title">站点统计</h3>
<ul class="widget-list">
<li>文章:{{ $blogStats['posts'] }} </li>
<li>评论:{{ $blogStats['comments'] }} </li>
<li>分类:{{ $blogStats['categories'] }} </li>
<li>标签:{{ $blogStats['tags'] }} </li>
</ul>
</section>
@stack('theme:sidebar_bottom')