Module: Golden::Theme::Foundation::SubNavHelper

Defined in:
lib/golden/theme/foundation/sub_nav_helper.rb

Instance Method Summary collapse

Instance Method Details

#foundation_sub_nav(options = {}, &block) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/golden/theme/foundation/sub_nav_helper.rb', line 3

def foundation_sub_nav options = {}, &block
  html_class = options.delete :class
  options = {
    class: "sub-nav #{html_class}".strip
  }.deep_merge options
  foundation_dl_tag options, &block
end