terraform/website/config.rb

43 lines
1005 B
Ruby
Raw Normal View History

2014-10-22 05:21:19 +02:00
set :base_url, "https://www.terraform.io/"
2014-10-13 18:44:38 +02:00
activate :hashicorp do |h|
2015-10-26 04:58:36 +01:00
h.name = "terraform"
2016-12-15 07:10:22 +01:00
h.version = "0.8.1"
2015-10-26 04:58:36 +01:00
h.github_slug = "hashicorp/terraform"
end
2016-10-31 23:36:33 +01:00
helpers do
# Get the title for the page.
#
# @param [Middleman::Page] page
#
# @return [String]
def title_for(page)
if page && page.data.page_title
return "#{page.data.page_title} - Terraform by HashiCorp"
end
"Terraform by HashiCorp"
end
# Get the description for the page
#
# @param [Middleman::Page] page
#
# @return [String]
def description_for(page)
return escape_html(page.data.description || "")
end
# 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 == expected or (expected.is_a?(Regexp) and expected.match(current))
return " class=\"active\""
else
return ""
end
end
end