Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.09 KB

website.md

File metadata and controls

51 lines (42 loc) · 1.09 KB
title description summary date lastmod draft weight toc seo
WebSite
2024-03-14 21:35:11 +0100
2024-03-14 21:35:11 +0100
false
710
true
title description canonical robots

A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.

Settings

You can set title and description in config/_default/params.toml:

# Hugo
title = "My Docs"
description = "Congrats on setting up a new Doks project!"

Generated meta tag

Hyas SEO generates the following meta tag (homepage only) — for example:

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebSite",
      "url": "https://getdoks.org/",
      "name": "My Docs",
      "description": "Congrats on setting up a new Doks project!"
    }
  ]
}
</script>

Resources