设置页可配字数/编辑窗/分页与伪静态后缀;公开帖/板/用户链接走规范路径并 301。 Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
451 B
Cheetah
10 lines
451 B
Cheetah
{{define "shared/board_aside"}}
|
|
<aside class="j13-aside j13-aside--left">
|
|
<a class="j13-aside__link{{if eq .Path "/boards"}} is-active{{end}}" href="/boards">全部板块</a>
|
|
<a class="j13-aside__link{{if and (eq .ActiveBoard 0) (ne .Path "/boards")}} is-active{{end}}" href="/">全部帖子</a>
|
|
{{range .Boards}}
|
|
<a class="j13-aside__link{{if eq $.ActiveBoard .ID}} is-active{{end}}" href="{{.Href}}">{{.Name}}</a>
|
|
{{end}}
|
|
</aside>
|
|
{{end}}
|