2023-01-15 09:30:13 +00:00
|
|
|
{{define "layout/sidebar" }}
|
2023-03-12 12:41:10 +00:00
|
|
|
{{template "common/sidebarWidget" .}}
|
2023-01-15 09:30:13 +00:00
|
|
|
<section id="categories-2" class="widget widget_categories">
|
|
|
|
<h2 class="widget-title">分类</h2>
|
|
|
|
<nav aria-label="分类">
|
|
|
|
<ul>
|
|
|
|
{{range $k,$v := .categories}}
|
2023-03-05 13:23:19 +00:00
|
|
|
<li class="cat-item cat-item-{{$v.Terms.TermId}}">
|
|
|
|
<a href="/p/category/{{$v.Name}}">{{$v.Name}}</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
2023-01-15 09:30:13 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
</nav>
|
|
|
|
</section>
|
|
|
|
<section id="meta-2" class="widget widget_meta">
|
|
|
|
<h2 class="widget-title">其他操作</h2>
|
|
|
|
<nav aria-label="其他操作">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/feed">条目feed</a></li>
|
|
|
|
<li><a href="/comments/feed">评论feed</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</section>
|
|
|
|
{{end}}
|