mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
hugo --printUnusedTemplates
|
|
|
|
stderr 'Template /list.html is unused'
|
|
|
|
-- hugo.toml --
|
|
disableKinds = ["taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404", "section", "page"]
|
|
baseURL = "https://example.org/"
|
|
-- layouts/home.html --
|
|
Home.
|
|
-- layouts/list.html --
|
|
{{ errorf "unused template: %s" .Kind }}
|