Skip to content

Commit 4ab6d77

Browse files
Add blog posts
1 parent e663d91 commit 4ab6d77

File tree

5 files changed

+51
-5
lines changed

5 files changed

+51
-5
lines changed

_layouts/post.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: single
3+
---
4+
{{ content }}

_pages/tutorials.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ We have tutorials for the following frameworks:
1111
<div class="about_frameworks">
1212
<div><a href="/tutorial/ng1/helloworld"><img src="/images/logos/angular1.png"><div>Angular 1</div></a></div>
1313
<div><a href="/tutorial/ng2/helloworld"><img src="/images/logos/angular2.png"><div>Angular 2</div></a></div>
14+
<div><a href="/tutorial/react/helloworld"><img src="/images/logos/react.png"><div>React</div></a></div>
1415
</div>
1516

16-
17-
### React Tutorial Coming Soon
18-
19-

_posts/2016-06-25-new-ui-router-site.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
layout: single
2+
layout: post
3+
comments: true
34
---
45

56
### New UI-Router site

_posts/2016-08-08-migrate-to-1_0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: post
3+
comments: true
4+
---
5+
6+
### New Guide: Migrate to UI-Router 1.0
7+
8+
We have published [a new guide](/guide/ng1/migrate-to-1_0) for migrating an
9+
Angular UI-Router application to UI-Router 1.0.
10+
11+
This guide details the new features available in the 1.0 version.
12+
It also lists all known breaking changes when migrating from the legacy (0.2.x, 0.3.x) versions.
13+
Workarounds for most breaking changes are provided.
14+
15+
---
16+
17+
UI-Router 1.0 brings a massive architecture change while retaining nearly 100% API backwards compatibility.
18+
The architecture change enables the powerful new Transition Hook APIs.
19+
20+
Additionally, splitting out the core code from the angular specific code paved the way
21+
for [UI-Router for Angular 2](/ng2/) and [UI-Router for React](/react/).
22+
23+
Read more: [Migrate to UI-Router 1.0](/guide/ng1/migrate-to-1_0)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: post
3+
comments: true
4+
---
5+
6+
### New Guide: Route to components
7+
8+
We have published [a new guide](/guide/ng1/route-to-component)
9+
detailing how to route to components using UI-Router 1.0.
10+
11+
The `.component()` method in Angular 1.5 provides a simple approach to composing user interfaces.
12+
With this model, applications are composed of small, self contained components.
13+
14+
Components explicitly couple markup (DOM) and controller (logic).
15+
They also explicitly define inputs and outputs, making data flow easier to reason about.
16+
17+
UI-Router 1.0 routes directly to Angular 1.5 components.
18+
It can even wire up resolve data to component inputs.
19+
20+
Read all about routing to components in the [Route to Components guide](/guide/ng1/route-to-component).
21+

0 commit comments

Comments
 (0)