1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-05 00:26:23 -07:00
gochan/templates/topbar.html
2024-03-13 13:58:36 -07:00

14 lines
No EOL
484 B
HTML

{{define "topbar" -}}
<div id="topbar">
<div class="topbar-section"><a href="{{webPathDir "/"}}" 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="{{webPathDir $board.Dir}}" class="topbar-item" title="{{$board.Title}}">/{{$board.Dir}}/</a>
{{- end -}}
{{- end -}}
</div>
{{- end -}}
</div>
{{- end -}}