docs: Clarify single page template search path
authorCameron Moore <moorereason@gmail.com>
Thu, 15 Dec 2016 17:06:25 +0000 (11:06 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Dec 2016 18:34:25 +0000 (19:34 +0100)
Fixes #2791

docs/content/templates/content.md

index f0db5f8cee26e4f288b8b9c8418b0299ba61fb92..24d1782ad67970fd1a8e4ae72b3e93e5699a8547 100644 (file)
@@ -32,14 +32,18 @@ Users can specify the `type` and `layout` in the [front-matter](/content/front-m
 is determined based on the content file’s location. If `type` is provided,
 it will be used instead of `section`.
 
-### Single
-
-* /layouts/`TYPE`-or-`SECTION`/`LAYOUT`.html
-* /layouts/`TYPE`-or-`SECTION`/single.html
-* /layouts/\_default/single.html
-* /themes/`THEME`/layouts/`TYPE`-or-`SECTION`/`LAYOUT`.html
-* /themes/`THEME`/layouts/`TYPE`-or-`SECTION`/single.html
-* /themes/`THEME`/layouts/\_default/single.html
+### Single Page
+
+* /layouts/`TYPE`/`LAYOUT`.html
+* /layouts/`SECTION`/`LAYOUT`.html
+* /layouts/`TYPE`/single.html
+* /layouts/`SECTION`/single.html
+* /layouts/_default/single.html
+* /themes/`THEME`/layouts/`TYPE`/`LAYOUT`.html
+* /themes/`THEME`/layouts/`SECTION`/`LAYOUT`.html
+* /themes/`THEME`/layouts/`TYPE`/single.html
+* /themes/`THEME`/layouts/`SECTION`/single.html
+* /themes/`THEME`/layouts/_default/single.html
 
 ## Example Single Template File