open-consul/website/config.rb

114 lines
2.5 KiB
Ruby
Raw Normal View History

2014-10-18 23:18:50 +00:00
set :base_url, "https://www.consul.io/"
2014-10-06 23:15:01 +00:00
activate :hashicorp do |h|
2015-10-25 21:46:22 +00:00
h.name = "consul"
2019-06-27 22:59:46 +00:00
h.version = "1.5.2"
2015-10-25 21:46:22 +00:00
h.github_slug = "hashicorp/consul"
2014-10-06 23:15:01 +00:00
end
2014-02-08 00:41:03 +00:00
2019-04-04 22:53:44 +00:00
# Netlify redirects/headers
proxy '_redirects', 'redirects.txt', ignore: true
2019-04-04 22:53:44 +00:00
2014-10-06 23:13:22 +00:00
helpers do
2018-03-08 20:21:18 +00:00
# Returns a segment tracking ID such that local development is not
# tracked to production systems.
def segmentId()
if (ENV['ENV'] == 'production')
'IyzLrqXkox5KJ8XL4fo8vTYNGfiKlTCm'
else
'0EXTgkNx0Ydje2PGXVbRhpKKoe5wtzcE'
end
end
2017-04-05 19:57:14 +00:00
# Returns the FQDN of the image URL.
#
# @param [String] path
#
# @return [String]
def image_url(path)
File.join(base_url, image_path(path))
end
# 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} - Consul by HashiCorp"
end
"Consul by HashiCorp"
end
# Get the description for the page
#
# @param [Middleman::Page] page
#
# @return [String]
def description_for(page)
description = (page.data.description || "Consul by HashiCorp")
.gsub('"', '')
.gsub(/\n+/, ' ')
.squeeze(' ')
return escape_html(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.start_with?(expected)
return " class=\"active\""
else
return ""
end
end
# Returns the id for this page.
# @return [String]
def body_id_for(page)
if !(name = page.data.sidebar_current).blank?
return "page-#{name.strip}"
end
if page.url == "/" || page.url == "/index.html"
return "page-home"
end
if !(title = page.data.page_title).blank?
return title
.downcase
.gsub('"', '')
.gsub(/[^\w]+/, '-')
.gsub(/_+/, '-')
.squeeze('-')
.squeeze(' ')
end
return ""
end
# Returns the list of classes for this page.
# @return [String]
def body_classes_for(page)
classes = []
if !(layout = page.data.layout).blank?
classes << "layout-#{page.data.layout}"
end
if !(title = page.data.page_title).blank?
title = title
.downcase
.gsub('"', '')
.gsub(/[^\w]+/, '-')
.gsub(/_+/, '-')
.squeeze('-')
.squeeze(' ')
classes << "page-#{title}"
end
return classes.join(" ")
end
2014-02-08 00:41:03 +00:00
end