From 25cca30fd20ff0d82374137af6055fa4047a8f72 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Sat, 12 Jul 2025 05:53:16 -0700 Subject: [PATCH] content: Fix type --- content/en/templates/types.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/en/templates/types.md b/content/en/templates/types.md index 21e3351ca..685ae7bf0 100644 --- a/content/en/templates/types.md +++ b/content/en/templates/types.md @@ -60,9 +60,7 @@ The purpose of each template type is described below. A _base_ template serves as a foundational layout that other templates can build upon. It typically defines the common structural components of your HTML, such as the `html`, `head`, and `body` elements. It also often includes recurring features like headers, footers, navigation, and script inclusions that appear across multiple pages of your site. By defining these common aspects once in a _base_ template, you avoid redundancy, ensure consistency, and simplify the maintenance of your website. -Hugo can apply a _base_ template to the following template types: [home](#home), [page](#page), [section](#section), [taxonomy](#taxonomy), [term](#term), [single](#single), [list](#list), and [all](#all). - -When Hugo parses any of these template types, it will apply a _base_ template only if the template being parsed meets these specific conditions: +Hugo can apply a _base_ template to the following template types: [home](#home), [page](#page), [section](#section), [taxonomy](#taxonomy), [term](#term), [single](#single), [list](#list), and [all](#all). When Hugo parses any of these template types, it will apply a _base_ template only if the template being parsed meets these specific conditions: - It must include at least one [`define`] [action](g). - It can only contain `define` actions, whitespace, and [template comments]. No other content is allowed.