hugo/docs/content/en/templates/single-page-templates.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

2.8 KiB

title description categories keywords menu weight toc aliases
Single page templates The primary view of content in Hugo is the single view. Hugo will render every Markdown file provided with a corresponding single template.
templates
page
templates
docs
parent weight
templates 50
50 true
/layout/content/

Single page template lookup order

See Template Lookup.

Example single page templates

Content pages are of the type page and will therefore have all the page variables and site variables available to use in their templates.

posts/single.html

This single page template makes use of Hugo base templates, the .Format function for dates, the .WordCount page variable, and ranges through the single content's specific taxonomies. with is also used to check whether the taxonomies are set in the front matter.

{{< code file=layouts/posts/single.html >}} {{ define "main" }}

{{ .Title }}

{{ .Content }}
{{ end }} {{< /code >}}

To easily generate new instances of a content type (e.g., new .md files in a section like project/) with preconfigured front matter, use content archetypes.