`
+})
+export class TodoList {
+ @Input() todos: Todo[];
+}
diff --git a/public/index.jade b/public/index.jade
index 810a9360a0..e48267a7f1 100644
--- a/public/index.jade
+++ b/public/index.jade
@@ -1,40 +1,46 @@
-.grid-fluid.l-space-bottom-8
- .c7
- h3.text-headline Build Incredible Applications
- p.text-body Angular is a development platform for creating applications using modern web standards. Angular includes a wealth of essential features such as mobile gestures, animations, filtering, routing, data binding, security, internationalization, and beautiful UI components. It's extremely modular, lightweight, and easy to learn.
- .c5.text-center
- img(src="/resources/images/logos/html5/html5.png" alt="Modern Web Standards")
+include _includes/_util-fns
+div(layout='row' style='margin: 0 -24px')
+ div(flex=33 style='padding:0 24px')
+ h3.text-headline Fast
+ p.text-body Angular computes updates based on changes to data, not DOM, for fast updates that scale to the largest data sets with minimal memory overhead.
+ div(flex=33 style='padding:0 24px')
+ h3.text-headline Mobile
+ p.text-body With Angular Universal for server-side rendering and Web Workers for smooth scrolling and transitions, Angular 2 solves the core challenges in mobile web performance.
+ div(flex=33 style='padding:0 24px')
+ h3.text-headline Flexible
+ p.text-body Supports several languages including plain JavaScript, TypeScript, and Dart. Also supports both object-style data structure with POJO data-binding and functional reactive style with unidirectional data flow and support for observables and immutable data structures.
+br
+div
+ h3.text-headline Basics
+ code-example(language='ts' format='linenums').
+ import {bootstrap, Component} from 'angular2/angular2';
-.grid-fluid.l-space-bottom-8
- .c6
- h3.text-headline Start Quick, Build Fast
- p.text-body Express your ideas with clean, understandable code. Angular is simple to build on, easy to change, and friendly to the way UX designers work. Create a UI that is beautiful by default, with material design and support for web components. Get started in just minutes with our QuickStart Guide.
- .c6
- code-example(language="javascript" format="linenums" showcase="true").
- @Component({
- selector: 'my-app',
- template: '<h1>Hi {{ name }}</h1>'
- })
+ @Component({
+ selector: 'my-app',
+ template: '<h1>My First Angular 2 App</h1>'
+ })
+ class AppComponent {}
- // Component controller
- class MyAppComponent {
- constructor() {
- this.name = 'Ali';
- }
- }
-
-.grid-fluid.l-space-bottom-8
- .c7
- h3.text-headline Powered by the Open Source Community
- p.text-body Angular is built by you, for you. Our community shapes Angular's direction: core contributions come from big companies, and small ones from students and independent experts. We do our work in the open so that you can either help Angular improve or extend and modify what we've built.
- .c5.text-center
- img(src="/resources/images/logos/license/open-source.png" alt="Open Source Initiative")
-
-
-
-.grid-fluid.text-center
- .c12
- h3.text-headline Loved by Millions of Developers
- p.text-body Join millions of developers who use Angular. Ramp up in minutes, and build an app today.
- != partial("/_includes/_cta-bar")
+ bootstrap(AppComponent);
+br
+div
+ h3.text-headline Structure your app
+ p.text-body In Angular you display data by defining components. Data in your component classes is automatically available to display in your templates or control how they render as in the example below.
+ p.text-body While this example uses TypeScript, Angular works equally well with ES5, ES6 and Dart as well.
+ p(style='text-align:right')
+ md-button.md-primary(href='http://plnkr.co/edit/hjHrTZw8HvkzAGhGiJhu?p=preview' target='_blank')
+ span.icon-open-in-new
+ | Edit on Plunker
+ +makeTabs('../docs/_fragments/homepage-hello-world/ts/src/index.html,../docs/_fragments/homepage-hello-world/ts/src/hello_world.html,../docs/_fragments/homepage-hello-world/ts/src/hello_world.ts', null, 'index.html,hello_world.html,hello_world.ts')
+br
+div
+ h3.text-headline Structuring apps with components
+ p.text-body Groups of coordinated components divide the responsibilities of our application. This ToDo list app has a separate component for the form, the list, and the core app logic. Where the previous example component referenced templates in separate files, this one shows using inline templates.
+ p.text-body Defining types as we do here in Todo.ts communicates our intention to other developers, helps us find bugs in our code, and lets IDEs do more work for us in refactoring, code navigation, and code completion.
+ p(style='text-align:right')
+ md-button.md-primary(href='http://plnkr.co/edit/UHEUnL8jpUoZBw3TaqWT?p=preview' target='_blank')
+ span.icon-open-in-new
+ | Edit on Plunker
+ +makeTabs('../docs/_fragments/homepage-todo/ts/src/index.html,../docs/_fragments/homepage-todo/ts/src/todo.ts,../docs/_fragments/homepage-todo/ts/src/todo_app.ts,../docs/_fragments/homepage-todo/ts/src/todo_form.ts,../docs/_fragments/homepage-todo/ts/src/todo_list.ts', null, 'index.html,todo.ts,todo_app.ts,todo_form.ts,todo_list.ts')
+br