Update web copy. Style pages with bootstrap accordions.

This commit is contained in:
rebuilt 2022-10-10 22:28:34 -07:00
parent f5e66dacb8
commit 5b7133d7ff
11 changed files with 475 additions and 211 deletions

View file

@ -0,0 +1,9 @@
module NavHelper
def link_highlight(path:)
active?(path:) ? 'active' : ''
end
def active?(path:)
current_page?(path)
end
end