Skip to content

Commit

Permalink
add dropdowns to all list pages
Browse files Browse the repository at this point in the history
  • Loading branch information
LDannijs committed Oct 4, 2023
1 parent 326b957 commit 1a6c6f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions website/layouts/_default/term.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<main>
{{ $title := printf "Tag: %s" .Title}}
{{ partial "banner.html" (dict "title" $title "description" .Description) }}
{{ partial "tagdropdown.html" . }}
{{ partial "vendordropdown.html" . }}
{{ partial "device-list.html" (dict "devices" ( .Pages ) ) }}
</main>
{{ end }}
2 changes: 2 additions & 0 deletions website/layouts/devices/list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{{ define "main" }}
<main>
{{ partial "banner.html" (dict "title" .Title "description" .Description) }}
{{ partial "tagdropdown.html" . }}
{{ partial "vendordropdown.html" . }}
{{ partial "device-list.html" (dict "devices" ( .Pages ) ) }}
</main>
{{ end }}

0 comments on commit 1a6c6f0

Please sign in to comment.