43 lines
1005 B
Ruby
43 lines
1005 B
Ruby
set :base_url, "https://www.terraform.io/"
|
|
|
|
activate :hashicorp do |h|
|
|
h.name = "terraform"
|
|
h.version = "0.7.9"
|
|
h.github_slug = "hashicorp/terraform"
|
|
end
|
|
|
|
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
|