shithub: hugo

Download patch

ref: 596bbea815f9215bc08806c30183631278318251
parent: 26084ad198044519e10b96ac5432be874c0ae1b4
author: Cameron Moore <moorereason@gmail.com>
date: Thu Dec 15 06:06:25 EST 2016

docs: Clarify single page template search path

Fixes #2791

--- a/docs/content/templates/content.md
+++ b/docs/content/templates/content.md
@@ -32,14 +32,18 @@
 is determined based on the content file’s location. If `type` is provided,
 it will be used instead of `section`.
 
-### Single
+### Single Page
 
-* /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
+* /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
 
--