You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Copy file name to clipboardExpand all lines: public/docs/ts/latest/guide/index.jade
+21-23
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,15 @@
1
1
blockincludes
2
2
include../_util-fns
3
3
4
-
- var langName =current.path[1] =='ts'?'TypeScript':'JavaScript'
4
+
- var __lang = _docsFor ||current.path[1] ||'ts';
5
+
- var guideData =public.docs[__lang].latest.guide._data;
6
+
- var advancedLandingPage ='';
7
+
- for(var page in guideData) {
8
+
- if (!guideData[page].basics&&!guideData[page].hide) { advancedLandingPage = page; break; }
9
+
- }
10
+
- var advancedUrl ='./'+ advancedLandingPage +'.html'
11
+
12
+
5
13
:marked
6
14
This page describes the Angular documentation at a high level.
7
15
If you're new to Angular, you may want to visit "[Learning Angular](learning-angular.html)" first.
@@ -10,7 +18,6 @@ block includes
10
18
11
19
The documentation is divided into major thematic sections, each
12
20
a collection of pages devoted to that theme.
13
-
<br clear="all">
14
21
15
22
blockjs-alert
16
23
@@ -41,7 +48,7 @@ table(width="100%")
41
48
A step-by-step, immersive approach to learning Angular that
42
49
introduces the major features of Angular in an application context.
43
50
tr(style=top)
44
-
td <b><ahref="ngmodule.html">Advanced</a></b>
51
+
td <b><ahref="!{advancedUrl}">Advanced</a></b>
45
52
td
46
53
:marked
47
54
In-depth analysis of Angular features and development practices.
@@ -56,34 +63,25 @@ table(width="100%")
56
63
The rest of the pages highlight key points in code rather than explain each step necessary to build the sample.
57
64
You can always get the full source through the #{_liveLink}s.
58
65
59
-
:marked
60
66
## Code samples
61
67
62
-
Each page includes code snippets that you can reuse in your applications.
63
-
These snippets are excerpts from a sample application that accompanies the page.
68
+
Each page includes code snippets from a sample application that accompanies the page.
69
+
You can reuse these snippets in your applications.
64
70
65
-
blockexample-links
66
-
:marked
67
-
Look for a link to a running version of that sample near the top of each page,
68
-
such as this <live-example name="architecture"></live-example> from the [Architecture](architecture.html) page.
71
+
Look for a link to a running version of that sample, often near the top of the page,
72
+
such as this <live-example name="architecture"></live-example> from the [Architecture](architecture.html) page.
73
+
The link launches a browser-based, code editor where you can inspect, modify, save, and download the code.
69
74
70
-
The link launches a browser-based, code editor where you can inspect, modify, save, and download the code.
71
-
72
-
:marked
73
75
## Reference pages
74
76
75
-
The [Cheat Sheet](cheatsheet.html) lists Angular syntax for common scenarios.
76
-
77
-
The [Glossary](glossary.html) defines terms that Angular developers should know.
78
-
79
-
The [Change Log](change-log.html) announces what's new and changed in the documentation..
80
-
81
-
The [API Reference](../api/) is the authority on every public-facing member of the Angular libraries.
77
+
* The [Cheat Sheet](cheatsheet.html) lists Angular syntax for common scenarios.
78
+
* The [Glossary](glossary.html) defines terms that Angular developers should know.
79
+
* The [Change Log](change-log.html) announces what's new and changed in the documentation.
80
+
* The [API Reference](../api/) is the authority on every public-facing member of the Angular libraries.
82
81
83
82
## Feedback
84
83
85
84
We welcome feedback!
86
85
87
-
Use the <a href="https://github.com/angular/angular.io" target="_blank" title="angular docs on github">angular.io Github repository</a> for **documentation** issues and pull requests.
88
-
89
-
Use the <a href="https://github.com/angular/angular" target="_blank" title="angular source on github">Angular Github repository</a> to report issues with **Angular** itself.
86
+
* Use the <a href="!{_ngDocRepoURL}" target="_blank" title="angular docs on github">angular.io Github repository</a> for **documentation** issues and pull requests.
87
+
* Use the <a href="!{_ngRepoURL}" target="_blank" title="angular source on github">Angular Github repository</a> to report issues with **Angular** itself.
0 commit comments