Title here
Summary here
This guide will help you configure SEO for your Vermeer project.
Learn more about setting up SEO for your Vermeer project in the Thulite SEO documentation.
Update the general settings.
In config/_default/params.toml
, update seo.schemas.name
and seo.schemas.sameAs
:
# SEO (@thulite/seo)
[seo]
[seo.title]
separator = "|"
suffix = ""
[seo.favicons]
sizes = []
icon = "favicon.png" # favicon.png (default)
svgIcon = "favicon.svg" # favicon.svg (default)
[seo.schemas]
type = "Person" # Organization (default) or Person
logo = "favicon-512x512.png" # Logo of Organization — favicon-512x512.png (default)
name = "Johannes Vermeer" # 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 = [] # BlogPosting sections
product = [] # Product sections
Set your title.
In content/_index.md
, update seo.title
:
---
seo:
title: "Johannes Vermeer" # custom title (optional)
description: "" # custom description (recommended)
canonical: "" # custom canonical URL (optional)
robots: "" # custom robot tags (optional)
---
Set your description.
In content/_index.md
, update description
and seo.description
:
---
description: "Vermeer is a one-page profile theme for Thulite. It features a unique design, easy setup, and 13 different color schemes."
seo:
title: "Johannes Vermeer" # custom title (optional)
description: "" # custom description (recommended)
canonical: "" # custom canonical URL (optional)
robots: "" # custom robot tags (optional)
---
In config/_default/params.toml
, update description
:
description = "Vermeer is a one-page profile theme for Thulite. It features a unique design, easy setup, and 13 different color schemes."
Add your favicon file(s).
favicon.png
and favicon.svg
(optional) to your projects’ assets
directory. Make sure favicon.png
is at least 512x512 pixels.Add your image for social media preview.
cover.png
to your projects’ static
directory. Make sure cover.png
is at least 640×320px (1280×640px for best display).