mirror of
https://gitea.com/gitea/theme.git
synced 2026-02-03 03:23:17 +08:00
13 lines
268 B
HTML
13 lines
268 B
HTML
<section>
|
|
<ul>
|
|
{{ $currentNode := . }}{{ range .Site.Menus.sidebar.ByWeight }}
|
|
<li class="{{ if $currentNode.IsMenuCurrent "sidebar" . }}active{{ end }}">
|
|
<a href="{{ .URL }}">
|
|
{{ .Pre }}
|
|
{{ .Name }}
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|