mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
15 lines
218 B
Ruby
15 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PathsHelper
|
|
##
|
|
# Includes functions related to links or redirects
|
|
##
|
|
|
|
def active_nav_li(link)
|
|
if current_page?(link)
|
|
'active'
|
|
else
|
|
''
|
|
end
|
|
end
|
|
end
|