From fc3b06dbf9dbc2c0216a20cb416a66ecfd8fb543 Mon Sep 17 00:00:00 2001 From: muskie9 Date: Mon, 23 Nov 2015 14:10:47 -0600 Subject: [PATCH] DOCS update LinkingModes description --- .../01_Tutorials/01_Building_A_Basic_Site.md | 24 +++++++---------- .../01_Templates/02_Common_Variables.md | 26 +++++++++---------- .../How_Tos/01_Navigation_Menu.md | 6 ++--- 3 files changed, 26 insertions(+), 30 deletions(-) diff --git a/docs/en/01_Tutorials/01_Building_A_Basic_Site.md b/docs/en/01_Tutorials/01_Building_A_Basic_Site.md index 4c8b84819..70e7966b1 100644 --- a/docs/en/01_Tutorials/01_Building_A_Basic_Site.md +++ b/docs/en/01_Tutorials/01_Building_A_Basic_Site.md @@ -166,7 +166,7 @@ The Menu for our site is created using a **loop**. Loops allow us to iterate ove <% loop $Menu(1) %> returns a set of first level menu items. We can then use the template variable -*$MenuTitle* to show the title of the page we are linking to, *$Link* for the URL of the page and *$LinkingMode* to help style our menu with CSS (explained in more detail shortly). +*$MenuTitle* to show the title of the page we are linking to, *$Link* for the URL of the page, and `$isSection` and `$isCurrent` to help style our menu with CSS (explained in more detail shortly). > *$Title* refers to **Page Name** in the CMS, whereas *$MenuTitle* refers to (the often shorter) **Navigation label** @@ -174,7 +174,7 @@ returns a set of first level menu items. We can then use the template variable :::ss