From e5b0cf5119d9354e5ebd28b8a37705291f25ba06 Mon Sep 17 00:00:00 2001 From: Alex Wolfe Date: Fri, 1 May 2015 10:30:12 -0700 Subject: [PATCH] Fix dart layout template --- public/docs/dart/latest/guide/_data.json | 19 +++++++++++-------- public/docs/dart/latest/guide/_layout.jade | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/public/docs/dart/latest/guide/_data.json b/public/docs/dart/latest/guide/_data.json index 4f0d82b970..05048ac264 100644 --- a/public/docs/dart/latest/guide/_data.json +++ b/public/docs/dart/latest/guide/_data.json @@ -1,23 +1,26 @@ { "_listtype": "ordered", - "setup": { - "title": "Getting Started" - }, - "index": { "title": "Step By Step Guide" }, + "setup": { + "title": "Getting Started" + }, + "displaying-data": { "title": "Displaying Data", - "intro": "Displaying data is job number one for any good application. In Angular, you bind data to elements in HTML templates, and Angular automatically updates the UI as data changes." + "intro": "Displaying data is job number one for any good application. In Angular, you bind data to elements in HTML templates and Angular automatically updates the UI as data changes." }, "user-input": { - "title": "User Input" + "title": "User Input", + "intro": "DOM events drive user input in Angular. You can use the native events like click, mouseover, and keyup. Angular uses a special syntax to register events to DOM elements. This section covers all the ins and outs of using the event syntax." }, + "making-components": { - "title": "Making Components" + "title": "Making Components", + "intro": "Angular applications are a tree of nested components. You always begin with a top-level component. You add child components by including them in the parent's template." } -} \ No newline at end of file +} diff --git a/public/docs/dart/latest/guide/_layout.jade b/public/docs/dart/latest/guide/_layout.jade index 47ae9f9319..ed495fbb37 100644 --- a/public/docs/dart/latest/guide/_layout.jade +++ b/public/docs/dart/latest/guide/_layout.jade @@ -5,7 +5,7 @@ html(lang="en" ng-app="angularIOApp") body(class="l-offset-nav l-offset-side-nav" ng-controller="AppCtrl") != partial("../../../../_includes/_main-nav") - != partial("../../../../_includes/_docs-nav") + != partial("../../../_includes/sidenav/_primary") != partial("../../../../_includes/_hero") != partial("../../../../_includes/_banner")