` directory with the same name.
-
-### Custom Content Type Template Lookup Order
-
-The lookup order for the `content/events/my-first-event.md` templates would be as follows:
-
-* `layouts/event/birthday.html`
-* `layouts/event/single.html`
-* `layouts/events/single.html`
-* `layouts/_default/single.html`
-
-### Create a Corresponding Archetype
-
-We can then create a custom archetype with preconfigured front matter at `event.md` in the `/archetypes` directory; i.e. `archetypes/event.md`.
-
-Read [Archetypes][archetypes] for more information on archetype usage with `hugo new`.
-
-[archetypes]: /content-management/archetypes/
-[front matter]: /content-management/front-matter/
-[sectiontemplates]: /templates/section-templates/
-[sections]: /content-management/sections/
-[template]: /templates/
-[Tumblr]: https://www.tumblr.com/
diff --git a/docs/content/en/functions/errorf.md b/docs/content/en/functions/errorf.md
index 9cd7e69b6..450e92679 100644
--- a/docs/content/en/functions/errorf.md
+++ b/docs/content/en/functions/errorf.md
@@ -14,7 +14,6 @@ workson: []
hugoversion:
relatedfuncs: [printf]
deprecated: false
-aliases: [/functions/errorf]
---
`errorf` or `warnf` will evaluate a format string, then output the result to the ERROR or WARNING log (and only once per error message to avoid flooding the log).
diff --git a/docs/content/en/templates/homepage.md b/docs/content/en/templates/homepage.md
index 55af8f99b..b6ce87f8e 100644
--- a/docs/content/en/templates/homepage.md
+++ b/docs/content/en/templates/homepage.md
@@ -54,8 +54,7 @@ The following is an example of a homepage template that uses [partial][partials]
{{.Content}}
-
- {{ range first 10 .Pages }}
+ {{ range first 10 .Site.RegularPages }}
{{ .Render "summary"}}
{{ end }}
diff --git a/docs/content/en/templates/lookup-order.md b/docs/content/en/templates/lookup-order.md
index 61ce35ef2..629f437c9 100644
--- a/docs/content/en/templates/lookup-order.md
+++ b/docs/content/en/templates/lookup-order.md
@@ -28,15 +28,15 @@ Hugo takes the parameters listed below into consideration when choosing a layout
Kind
: The page `Kind` (the home page is one). See the example tables below per kind. This also determines if it is a **single page** (i.e. a regular content page. We then look for a template in `_default/single.html` for HTML) or a **list page** (section listings, home page, taxonomy lists, taxonomy terms. We then look for a template in `_default/list.html` for HTML).
+Layout
+: Can be set in page front matter.
+
Output Format
: See [Custom Output Formats](/templates/output-formats). An output format has both a `name` (e.g. `rss`, `amp`, `html`) and a `suffix` (e.g. `xml`, `html`). We prefer matches with both (e.g. `index.amp.html`, but look for less specific templates.
Language
: We will consider a language code in the template name. If the site language is `fr`, `index.fr.amp.html` will win over `index.amp.html`, but `index.amp.html` will be chosen before `index.fr.html`.
-Layout
-: Can be set in page front matter.
-
Type
: Is value of `type` if set in front matter, else it is the name of the root section (e.g. "blog"). It will always have a value, so if not set, the value is "page".
diff --git a/docs/content/en/templates/shortcode-templates.md b/docs/content/en/templates/shortcode-templates.md
index 898296f2b..ac0de0ab2 100644
--- a/docs/content/en/templates/shortcode-templates.md
+++ b/docs/content/en/templates/shortcode-templates.md
@@ -252,11 +252,11 @@ Would load the template found at `/layouts/shortcodes/vimeo.html`:
{{< code file="/layouts/shortcodes/vimeo.html" >}}
{{ if .IsNamedParams }}
-
+
{{ else }}
-
+
{{ end }}
{{< /code >}}
@@ -265,10 +265,10 @@ Would be rendered as:
{{< code file="vimeo-iframes.html" copy="false" >}}
-
+
-
+
{{< /code >}}
diff --git a/docs/netlify.toml b/docs/netlify.toml
index 0a9bf7dcf..7b9b92285 100644
--- a/docs/netlify.toml
+++ b/docs/netlify.toml
@@ -3,7 +3,7 @@ publish = "public"
command = "hugo --gc --minify"
[context.production.environment]
-HUGO_VERSION = "0.64.0"
+HUGO_VERSION = "0.64.1"
HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true"
@@ -11,20 +11,20 @@ HUGO_ENABLEGITINFO = "true"
command = "hugo --gc --minify --enableGitInfo"
[context.split1.environment]
-HUGO_VERSION = "0.64.0"
+HUGO_VERSION = "0.64.1"
HUGO_ENV = "production"
[context.deploy-preview]
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
[context.deploy-preview.environment]
-HUGO_VERSION = "0.64.0"
+HUGO_VERSION = "0.64.1"
[context.branch-deploy]
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
[context.branch-deploy.environment]
-HUGO_VERSION = "0.64.0"
+HUGO_VERSION = "0.64.1"
[context.next.environment]
HUGO_ENABLEGITINFO = "true"