diff --git a/theme/boost/templates/core/navbar.mustache b/theme/boost/templates/core/navbar.mustache index 0f2c157943827..c74410d268b5f 100644 --- a/theme/boost/templates/core/navbar.mustache +++ b/theme/boost/templates/core/navbar.mustache @@ -30,7 +30,7 @@ * has_action - boolean * action - string * get_title - string - * text - HTML + * get_content - string Example context (json): { @@ -39,21 +39,21 @@ "has_action": true, "action": "#", "get_title": "Test title", - "text": "First & fresh" + "get_content": "First & fresh" }, { "has_action": true, "action": "#", "get_title": "Second item & a title", - "text": "Second item" + "get_content": "Second item" }, { "has_action": false, - "text": "Third item" + "get_content": "Third item" }, { "has_action": false, - "text": "Fourth & last" + "get_content": "Fourth & last" } ] } @@ -62,7 +62,7 @@