Sha256: b94d2a71129239d94968ff71f40771a4179590c4c2a684447c1d0723cf330bcb
Contents?: true
Size: 415 Bytes
Versions: 30
Compression:
Stored size: 415 Bytes
Contents
module GovukPublishingComponents module Presenters class IsPartOfSchema def initialize(is_part_of_url) @is_part_of_url = is_part_of_url end def structured_data # http://schema.org/isPartOf - minimal { "@context" => "http://schema.org", "@type" => "CreativeWork", "sameAs" => @is_part_of_url, } end end end end
Version data entries
30 entries across 30 versions & 1 rubygems