Sha256: 21700cc93ea4e4a1ad46d520a3b213bade98ff1bdf4f8bbfc7167c25970226eb
Contents?: true
Size: 1.36 KB
Versions: 1
Compression:
Stored size: 1.36 KB
Contents
module GovukTechDocs class MetaTags def initialize(config, current_page) @config = config @current_page = current_page end def tags all_tags = { 'description' => page_description, 'og:description' => page_description, 'og:image' => page_image, 'og:site_name' => site_name, 'og:title' => page_title, 'og:type' => 'object', 'og:url' => canonical_url, 'twitter:card' => 'summary', 'twitter:domain' => URI.parse(host).host, 'twitter:image' => page_image, 'twitter:title' => browser_title, 'twitter:url' => canonical_url, } Hash[all_tags.select { |_k, v| v }] end def browser_title [page_title, site_name].select(&:present?).uniq.join(' | ') end def canonical_url "#{host}#{current_page.url}" end private attr_reader :config, :current_page def page_image "#{host}/images/govuk-large.png" end def site_name config[:tech_docs][:service_name] end def page_description locals[:description] || frontmatter.description end def page_title locals[:title] || frontmatter.title end def host config[:tech_docs][:host] end def locals current_page.metadata[:locals] end def frontmatter current_page.data end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
govuk_tech_docs-1.2.0 | lib/govuk_tech_docs/meta_tags.rb |