<!-- 年度文章 -->
<div class="list-group">
{foreach $article_count as $yc}
<a href="{$url}/index.php?year={$yc.year}" class="list-group-item d-flex justify-content-between align-items-center {if $year==$yc.year}active{/if}">
{$yc.year}
<span class="badge bg-success rounded-pill">{$yc.count}</span>
</a>
{/foreach}
</div>
{if $is_admin}
<div class="d-grid gap-2 mt-3">
<a href="{$url}/admin/index.php" class="btn btn-primary">
<i class="fas fa-pencil-alt"></i> 新增文章
</a>
</div>
{/if}