github.com/ndarilek/terraform@v0.3.8-0.20150320140257-d3135c1b2bac/website/helpers/sidebar_helpers.rb (about) 1 module SidebarHelpers 2 # This helps by setting the "active" class for sidebar nav elements 3 # if the YAML frontmatter matches the expected value. 4 def sidebar_current(expected) 5 current = current_page.data.sidebar_current || "" 6 if current.start_with?(expected) 7 return " class=\"active\"" 8 else 9 return "" 10 end 11 end 12 end