1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-08 05:26:22 -07:00
gochan/templates/topbar.html
2023-05-24 08:55:11 -07:00

14 lines
No EOL
478 B
HTML

{{define "topbar" -}}
<div id="topbar">
<div class="topbar-section"><a href="{{webPath "/"}}" class="topbar-item">home</a></div>
{{- range $s, $section := .sections -}}
<div class="topbar-section">
{{- with $sectionBoards := sectionBoards $section.ID -}}
{{range $b, $board := $sectionBoards -}}
<a href="{{webPath $board.Dir}}/" class="topbar-item" title="{{$board.Title}}">/{{$board.Dir}}/</a>
{{- end -}}
{{- end -}}
</div>
{{- end -}}
</div>
{{- end -}}