Module: Panda::Core::SEO

Extended by:
ActiveSupport::Concern
Defined in:
lib/panda/core/seo.rb

Instance Method Summary collapse

Instance Method Details

#structured_dataObject



11
12
13
14
15
16
17
18
19
20
# File 'lib/panda/core/seo.rb', line 11

def structured_data
  {
    "@context": "https://schema.org",
    "@type": self.class.name,
    name: title,
    description: meta_description,
    datePublished: created_at,
    dateModified: updated_at
  }
end