docs: Clarify single page template search path

Fixes #2791
This commit is contained in:
Cameron Moore 2016-12-15 11:06:25 -06:00 committed by Bjørn Erik Pedersen
parent 26084ad198
commit 596bbea815

View 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 files 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