Title here
Summary here
An organization such as a school, NGO, corporation, club, etc.
You can set type
, logo
, name
, sameAs
, and images
in config/_default/params.toml
:
# SEO (@thulite/seo)
[seo]
[seo.schemas]
type = "Organization" # Organization (default) or Person
logo = "favicon-512x512.png" # Logo of Organization — favicon-512x512.png (default)
name = "Thulite" # Name of Organization or Person
sameAs = ["https://github.com/thuliteio/thulite", "https://fosstodon.org/@thulite"] # 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": "Organization",
"url": "https://thulite.io/",
"name": "Thulite",
"sameAs": [
"https://github.com/thuliteio/thulite",
"https://fosstodon.org/@thulite"
],
"image": [
{
"@id": "https://thulite.io/cover.png"
}
],
"logo": {
"@id": "https://thulite.io/favicon-512x512.png"
}
}
]
}
</script>