2023-05-23 08:47:27 -07:00
|
|
|
{{define "topbar" -}}
|
|
|
|
<div id="topbar">
|
2023-12-07 12:11:58 -08:00
|
|
|
<div class="topbar-section"><a href="{{webPathDir "/"}}" class="topbar-item">home</a></div>
|
2024-03-13 13:58:36 -07:00
|
|
|
{{- range $s, $section := $.sections -}}
|
2023-05-24 08:55:11 -07:00
|
|
|
<div class="topbar-section">
|
|
|
|
{{- with $sectionBoards := sectionBoards $section.ID -}}
|
|
|
|
{{range $b, $board := $sectionBoards -}}
|
2023-12-07 12:11:58 -08:00
|
|
|
<a href="{{webPathDir $board.Dir}}" class="topbar-item" title="{{$board.Title}}">/{{$board.Dir}}/</a>
|
2023-05-24 08:55:11 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
</div>
|
2023-05-23 08:47:27 -07:00
|
|
|
{{- end -}}
|
|
|
|
</div>
|
|
|
|
{{- end -}}
|