Hugo's Lookup Order
Hugo Layouts Lookup Rules
Hugo takes the parameters listed below into consideration when choosing a layout for a given page. They are listed in a priority order. This should feel natural, but look at the table below for concrete examples of the different parameter variations.
- 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. An output format has both a
name
(e.g.rss
,amp
,html
) and asuffix
(e.g.xml
,html
). We prefer matches with both (e.g.index.amp.html
, but look for less specific templates.
Note that if the output format’s Media Type has more than one suffix defined, only the first is considered.
- Language
- We will consider a language code in the template name. If the site language is
fr
,index.fr.amp.html
will win overindex.amp.html
, butindex.amp.html
will be chosen beforeindex.fr.html
. - 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”. - Section
- Is relevant for
section
,taxonomy
andterm
types.
Hugo Layouts Lookup Rules With Theme
In Hugo, layouts can live in either the project’s or the themes’ layout folders, and the most specific layout will be chosen. Hugo will interleave the lookups listed below, finding the most specific one either in the project or themes.
Examples: Layout Lookup for Regular Pages
Example | OutputFormat | Suffix | Template Lookup Order |
---|---|---|---|
Single page in "posts" section | HTML | html |
|
Base template for single page in "posts" section | HTML | html |
|
Single page in "posts" section with layout set | HTML | html |
|
Base template for single page in "posts" section with layout set | HTML | html |
|
AMP single page | AMP | html |
|
AMP single page, French language | AMP | html |
|
Examples: Layout Lookup for Home Page
Example | OutputFormat | Suffix | Template Lookup Order |
---|---|---|---|
Home page | HTML | html |
|
Base template for home page | HTML | html |
|
Home page with type set | HTML | html |
|
Base template for home page with type set | HTML | html |
|
Home page with layout set | HTML | html |
|
AMP home, French language | AMP | html |
|
JSON home | JSON | json |
|
RSS home | RSS | xml |
|
Examples: Layout Lookup for Section Pages
Example | OutputFormat | Suffix | Template Lookup Order |
---|---|---|---|
RSS section posts | RSS | xml |
|
Section list for "posts" section | HTML | html |
|
Section list for "posts" section with type set to "blog" | HTML | html |
|
Section list for "posts" section with layout set to "demoLayout" | HTML | html |
|
Examples: Layout Lookup for Taxonomy Pages
Example | OutputFormat | Suffix | Template Lookup Order |
---|---|---|---|
Taxonomy in categories | RSS | xml |
|
Taxonomy list in categories | HTML | html |
|
Examples: Layout Lookup for Term Pages
Example | OutputFormat | Suffix | Template Lookup Order |
---|---|---|---|
Term in categories | RSS | xml |
|
Taxonomy term in categories | HTML | html |
|