From 16ad628114a9357a782b290f0cec69c24e473751 Mon Sep 17 00:00:00 2001 From: Julien Chien Date: Sat, 2 Apr 2016 15:29:36 -0700 Subject: [PATCH] docs: Fix references to section list templates Fixes #2032 --- docs/content/content/types.md | 3 +++ docs/content/tutorials/creating-a-new-theme.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/content/content/types.md b/docs/content/content/types.md index f6d18d354..277294881 100644 --- a/docs/content/content/types.md +++ b/docs/content/content/types.md @@ -60,6 +60,9 @@ Create a directory with the name of the type in `/layouts`. Type is always singu ### 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 diff --git a/docs/content/tutorials/creating-a-new-theme.md b/docs/content/tutorials/creating-a-new-theme.md index ee28f900c..960774ea8 100644 --- a/docs/content/tutorials/creating-a-new-theme.md +++ b/docs/content/tutorials/creating-a-new-theme.md @@ -864,7 +864,7 @@ $ find themes/zafta -name list.html | xargs ls -l -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