automad / meta-tags
This Automad extension creates meta tags in templates. It also supports the Open Graph protocol to create beautiful preview cards for Facebook and Twitter.
Fund package maintenance!
marcantondahmen
Ko Fi
paypal.me/marcantondahmen
Installs: 5 249
Dependents: 8
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 0
Type:automad-package
Requires
README
This extension creates a couple of meta tags for the <head></head>
section in a template. It also supports the Open Graph protocol to create beautiful preview cards for Facebook and Twitter. The following meta tags are available:
charset="..."
name="viewport"
property="og:type"
property="og:url"
property="og:image"
property="og:title"
property="og:description"
name="description"
name="twitter:card"
Usage
The extension can be used in templates as follows:
<@ Automad/MetaTags { options } @>
Options
The following options are available:
Example
A full example for using this extension in the <head></head>
section looks as follows:
<head>
<@ Automad/MetaTags {
description: @{ metaDescription | def(@{ text | stripTags }) },
ogTitle: @{ ogTitle | def('@{ sitename } / @{ title }') },
ogDescription: @{ ogDescription | def(@{ text | stripTags }) },
ogType: 'website',
ogImage: @{ ogImage | def('/shared/og*.png') }
} @>
<# Add some CSS or JS tags here ... #>
</head>