open-consul/website/config.rb

28 lines
756 B
Ruby
Raw Normal View History

2014-02-08 00:41:03 +00:00
#-------------------------------------------------------------------------
# Configure Middleman
#-------------------------------------------------------------------------
2014-10-06 23:15:01 +00:00
activate :hashicorp do |h|
h.version = '0.4.0'
h.bintray_repo = 'mitchellh/consul'
h.bintray_user = 'mitchellh'
h.bintray_key = ENV['BINTRAY_API_KEY']
2014-02-08 00:41:03 +00:00
2014-10-06 23:15:01 +00:00
h.bintray_exclude_proc = Proc.new do |os, filename|
os == 'web'
end
end
2014-02-08 00:41:03 +00:00
2014-10-06 23:13:22 +00:00
helpers do
# This helps by setting the "active" class for sidebar nav elements
# if the YAML frontmatter matches the expected value.
def sidebar_current(expected)
current = current_page.data.sidebar_current || ""
if current.start_with?(expected)
return " class=\"active\""
else
return ""
end
end
2014-02-08 00:41:03 +00:00
end