hugo/docs/content/en/templates/home.md
2024-08-09 15:17:43 +02:00

1.9 KiB

title description categories keywords menu weight toc aliases
Home templates The home page of a website is often formatted differently than the other pages. For this reason, Hugo makes it easy for you to define your new site's home page as a unique template.
templates
docs
parent weight
templates 60
60 true
/layout/homepage/
/templates/homepage-template/
/templates/homepage/

The home template is the only required template for building a site and therefore useful when bootstrapping a new site and template. It is also the only required template if you are developing a single-page website.

{{< youtube ut1xtRZ1QOA >}}

Home template lookup order

See Template Lookup.

Add content and front matter to the home page

The home page accepts content and front matter from an _index.md file. This file should live at the root of your content folder (i.e., content/_index.md). You can then add body copy and metadata to your home page the way you would any other content file.

See the home template below or Content Organization for more information on the role of _index.md in adding content and front matter to list pages.

Example home template

{{< code file=layouts/_default/home.html >}} {{ define "main" }}

{{ .Title }}

{{ with .Params.subtitle }} {{ . }} {{ end }}
{{ .Content }}
{{ range first 10 .Site.RegularPages }} {{ .Render "summary" }} {{ end }}
{{ end }} {{< /code >}}