From fd302cb1f75281d87952f0730e44ef776175a1d8 Mon Sep 17 00:00:00 2001 From: Behrang <18451+behrangsa@users.noreply.github.com> Date: Fri, 25 Jan 2019 02:17:25 +1100 Subject: [PATCH] Minor doc fixes (#7495) Merge pull request 7495 --- docs/_docs/step-by-step/04-layouts.md | 2 +- docs/_docs/step-by-step/05-includes.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/step-by-step/04-layouts.md b/docs/_docs/step-by-step/04-layouts.md index cb7ecd9e..4bbc28d8 100644 --- a/docs/_docs/step-by-step/04-layouts.md +++ b/docs/_docs/step-by-step/04-layouts.md @@ -43,7 +43,7 @@ Create your first layout at `_layouts/default.html` with the following content: You'll notice this is almost identical to `index.html` except there's no front matter and the content of the page is replaced with a `content` variable. `content` is a special variable which has the value of the rendered -content of the page its called on. +content of the page it's called on. To have `index.html` use this layout, you can set a `layout` variable in front matter. The layout wraps around the content of the page so all you need in diff --git a/docs/_docs/step-by-step/05-includes.md b/docs/_docs/step-by-step/05-includes.md index 7eb3a986..84b2cc0a 100644 --- a/docs/_docs/step-by-step/05-includes.md +++ b/docs/_docs/step-by-step/05-includes.md @@ -3,7 +3,7 @@ layout: step title: Includes position: 5 --- -The site is coming together however, there's no way to navigate between +The site is coming together; however, there's no way to navigate between pages. Let's fix that. Navigation should be on every page so adding it to your layout is the correct