Instantly share code, notes, and snippets.
Meta tags snippet for Ghost Themes
Tested on Ghost 0.5.7. IMPORTANT! Some things are more likely to work in a different way in future versions of Ghost. Check Ghost documentation first.
Generates meta tags block like this
<title>TITLE</title> <meta property="og:title" content="TITLE"/> <meta itemprop="name" content="TITLE"/> <meta property="og:type" content="TYPE"/> <meta property="og:site_name" content="SITE_NAME"/> <meta property="og:url" content="URL"/> <meta name="description" content="DESCRIPTION"/> <meta property="og:description" content="DESCRIPTION"/> <meta itemprop="description" content="DESCRIPTION"/> <meta property="og:image" content="IMAGE"/> <link rel="image_src" href="IMAGE"/> <meta itemprop="image" content="IMAGE"/>
{{@blog.title}}
{{@blog.description}}
website
{{@blog.url}}{{{relativeUrl}}}
{{@blog.url}}{{@blog.cover}}
Posts with tag “{{tag.name}}” — {{@blog.title}}
Posts by {{author.name}} — {{@blog.title}}
{{meta_title}} — {{@blog.title}}
{{meta_description}}
{{excerpt words="27"}}…
article
{{ghost_head}}
{{@blog.url}}{{image}}
Sorry, something went wrong.
partials/meta.hbs
Meta tags snippet for Ghost Themes
Tested on Ghost 0.5.7. IMPORTANT! Some things are more likely to work in a different way in future versions of Ghost. Check Ghost documentation first.
Generates meta tags block like this
For index views
{{@blog.title}}
{{@blog.description}}
website
{{@blog.url}}{{{relativeUrl}}}
{{@blog.title}}
{{@blog.url}}{{@blog.cover}}
if blog cover existsFor tag views
Posts with tag “{{tag.name}}” — {{@blog.title}}
{{@blog.description}}
website
{{@blog.url}}{{{relativeUrl}}}
{{@blog.title}}
{{@blog.url}}{{@blog.cover}}
if blog cover existsFor author views
Posts by {{author.name}} — {{@blog.title}}
{{@blog.description}}
website
{{@blog.url}}{{{relativeUrl}}}
{{@blog.title}}
{{@blog.url}}{{@blog.cover}}
if blog cover existsFor post and page views
{{meta_title}} — {{@blog.title}}
{{meta_description}}
if exists meta description. Else{{excerpt words="27"}}…
article
(generated by{{ghost_head}}
){{ghost_head}}
){{ghost_head}}
){{@blog.url}}{{image}}
if post have meta image. Else{{@blog.url}}{{@blog.cover}}
if blog cover exists