Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit e5b0cf5

Browse files
committed
Fix dart layout template
1 parent 1f39409 commit e5b0cf5

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed
Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
{
22
"_listtype": "ordered",
33

4-
"setup": {
5-
"title": "Getting Started"
6-
},
7-
84
"index": {
95
"title": "Step By Step Guide"
106
},
117

8+
"setup": {
9+
"title": "Getting Started"
10+
},
11+
1212
"displaying-data": {
1313
"title": "Displaying Data",
14-
"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."
14+
"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."
1515
},
1616

1717
"user-input": {
18-
"title": "User Input"
18+
"title": "User Input",
19+
"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."
1920
},
21+
2022
"making-components": {
21-
"title": "Making Components"
23+
"title": "Making Components",
24+
"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."
2225
}
23-
}
26+
}

public/docs/dart/latest/guide/_layout.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ html(lang="en" ng-app="angularIOApp")
55

66
body(class="l-offset-nav l-offset-side-nav" ng-controller="AppCtrl")
77
!= partial("../../../../_includes/_main-nav")
8-
!= partial("../../../../_includes/_docs-nav")
8+
!= partial("../../../_includes/sidenav/_primary")
99
!= partial("../../../../_includes/_hero")
1010
!= partial("../../../../_includes/_banner")
1111

0 commit comments

Comments
 (0)