shithub: hugo

Download patch

ref: 16ad628114a9357a782b290f0cec69c24e473751
parent: 6d2898b33bf2a1136296e2c5e8fb5f3beb802b29
author: Julien Chien <[email protected]>
date: Sat Apr 2 11:29:36 EDT 2016

docs: Fix references to section list templates

Fixes #2032

--- a/docs/content/content/types.md
+++ b/docs/content/content/types.md
@@ -60,6 +60,9 @@
 ### Create single template
 Create a file called `single.html` inside your directory. *E.g. `/layouts/post/single.html`*.
 
+### Create list template
+Create a file called `post.html` inside the section lists template directory, `/layouts/section`. *E.g. `/layouts/section/post.html`*.
+
 ### Create views
 Many sites support rendering content in a few different ways, for
 instance, a single page view and a summary view to be used when
--- a/docs/content/tutorials/creating-a-new-theme.md
+++ b/docs/content/tutorials/creating-a-new-theme.md
@@ -864,7 +864,7 @@
 -rw-r--r--  1 mdhender  wheel  0 Nov 27 20:35 themes/zafta/layouts/_default/list.html
 ```
 
-As with the single article, we have to decide to update `_default/list.html` or create `article/list.html`. We still don't have multiple content types, so let's stay consistent and update the default list template.
+As with the single article, we have to decide to update `_default/list.html` or create `section/article.html`. We still don't have multiple content types, so let's stay consistent and update the default list template.
 
 ```bash
 $ vi themes/zafta/layouts/_default/list.html