Title here
Summary here
A person (alive, dead, undead, or fictional).
You can set type
, name
, sameAs
, and images
in config/_default/params.toml
:
# SEO (@thulite/seo)
[seo]
[seo.schemas]
type = "Person" # Organization (default) or Person
logo = "favicon-512x512.png" # Logo of Organization — favicon-512x512.png (default)
name = "Henk Verlinde" # Name of Organization or Person
sameAs = [] # E.g. ["https://github.com/thuliteio/thulite", "https://fosstodon.org/@thulite"]
images = ["cover.png"] # ["cover.png"] (default)
article = [] # Article sections
newsArticle = [] # NewsArticle sections
blogPosting = ["blog"] # BlogPosting sections
product = [] # Product sections
Thulite SEO generates the following meta tag (if applicable, homepage only) — for example:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Person",
"url": "https://henkverlinde.com/",
"name": "Henk Verlinde",
"image": [
{
"@id": "https://henkverlinde.com/cover.png"
}
]
}
]
}
</script>