vagrant/website/www/helpers/sidebar_helpers.rb

13 lines
341 B
Ruby
Raw Normal View History

2013-09-03 20:48:55 +00:00
module SidebarHelpers
# This helps by setting the "current" class for sidebar nav elements
# if the YAML frontmatter matches the expected value.
def sidebar_current(expected)
actual = current_page.data.sidebar_current
if actual && actual == expected
return " class=\"current\""
else
return ""
end
end
end