mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-13 01:10:28 -07:00
9 lines
142 B
Ruby
9 lines
142 B
Ruby
module NavHelper
|
|
def link_highlight(path:)
|
|
active?(path:) ? 'active' : ''
|
|
end
|
|
|
|
def active?(path:)
|
|
current_page?(path)
|
|
end
|
|
end
|