From 596bbea815f9215bc08806c30183631278318251 Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Thu, 15 Dec 2016 11:06:25 -0600 Subject: [PATCH] docs: Clarify single page template search path Fixes #2791 --- docs/content/templates/content.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/content/templates/content.md b/docs/content/templates/content.md index f0db5f8cee2..24d1782ad67 100644 --- a/docs/content/templates/content.md +++ b/docs/content/templates/content.md @@ -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