diff options
| author | Igor Minar | 2012-01-15 23:28:10 -0800 | 
|---|---|---|
| committer | Igor Minar | 2012-01-17 09:49:37 -0800 | 
| commit | 92af30ce6e99676c71c85bd08962b68629564908 (patch) | |
| tree | 4adf4b56cbf7c9fb6ee9dee8f40dd16fb2199842 /docs/content/tutorial/step_01.ngdoc | |
| parent | 54581d36df74ac128a078aafb3e4b66e0b1599f3 (diff) | |
| download | angular.js-92af30ce6e99676c71c85bd08962b68629564908.tar.bz2 | |
docs(*): various doc fixes
Diffstat (limited to 'docs/content/tutorial/step_01.ngdoc')
| -rw-r--r-- | docs/content/tutorial/step_01.ngdoc | 57 | 
1 files changed, 0 insertions, 57 deletions
| diff --git a/docs/content/tutorial/step_01.ngdoc b/docs/content/tutorial/step_01.ngdoc deleted file mode 100644 index fb8eb26e..00000000 --- a/docs/content/tutorial/step_01.ngdoc +++ /dev/null @@ -1,57 +0,0 @@ -@ngdoc overview -@name Tutorial: 1 - Static Template -@description - -<ul doc:tutorial-nav="1"></ul> - - -In order to illustrate how angular enhances standard HTML, you will create a purely *static* HTML -page and then examine how we can turn this HTML code into a template that angular will use to -dynamically display the same result with any set of data. - -In this step you will add some basic information about two cell phones to an HTML page. - - -<doc:tutorial-instructions step="1" show="true"></doc:tutorial-instructions> - - -The page now contains a list with information about two phones. - -The most important changes are listed below. You can see the full diff on {@link -https://github.com/angular/angular-phonecat/compare/step-0...step-1 GitHub}: - -__`app/index.html`:__ -<pre> -... -  <ul> -    <li> -      <span>Nexus S</span> -      <p> -        Fast just got faster with Nexus S. -      </p> -    </li> -    <li> -      <span>Motorola XOOMâ„¢ with Wi-Fi</span> -      <p> -        The Next, Next Generation tablet. -      </p> -    </li> -  </ul> -... -</pre> - - -# Experiments - -* Try adding more static HTML to `index.html`. For example: - -          <p>Total number of phones: 2</p> - - -# Summary - -This addition to your app uses static HTML to display the list. Now, let's go to {@link step_02 -step 2} to learn how to use angular to dynamically generate the same list. - - -<ul doc:tutorial-nav="1"></ul> | 
