| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Target 1: Get Started" | 3 title: "Get Started" |
| 4 description: "Get Dart and run two Dart applications" | 4 description: "Get Dart and run two Dart applications" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 tutorial: | 6 tutorial: |
| 7 id: get-started | 7 id: get-started |
| 8 js: | 8 js: |
| 9 - url: /js/os-switcher.js | 9 - url: /js/os-switcher.js |
| 10 defer: true | 10 defer: true |
| 11 - url: /js/editor-downloads-analytics.js | 11 - url: /js/editor-downloads-analytics.js |
| 12 defer: true | 12 defer: true |
| 13 - url: /js/editor-version.js | 13 - url: /js/editor-version.js |
| 14 defer: true | 14 defer: true |
| 15 next: connect-dart-html | 15 next: connect-dart-html |
| 16 next-title: "Connect Dart & HTML" | 16 next-title: "Connect Dart & HTML" |
| 17 prev: index.html | 17 prev: index.html |
| 18 prev-title: "Home" | 18 prev-title: "A Game of Darts" |
| 19 --- | 19 --- |
| 20 | 20 |
| 21 {% capture whats_the_point %} | 21 {% capture whats_the_point %} |
| 22 | 22 |
| 23 * The Dart bundle has development tools, APIs, and samples. | 23 * The Dart bundle has development tools, APIs, and samples. |
| 24 * You can use Dart for web apps and command-line apps. | 24 * You can use Dart for web apps and command-line apps. |
| 25 * Run Dart web apps directly in Dartium. | 25 * Run Dart web apps directly in Dartium. |
| 26 * Compile Dart apps to JavaScript for other browsers. | 26 * Compile Dart apps to JavaScript for other browsers. |
| 27 * All Dart apps have a main() function. | 27 * All Dart apps have a main() function. |
| 28 * Dart supports top-level functions. | 28 * Dart supports top-level functions. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 42 <li> | 42 <li> |
| 43 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target01/clickme" | 43 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target01/clickme" |
| 44 target="_blank">clickme</a> | 44 target="_blank">clickme</a> |
| 45 </li> | 45 </li> |
| 46 </ul> | 46 </ul> |
| 47 | 47 |
| 48 {% endcapture %} | 48 {% endcapture %} |
| 49 | 49 |
| 50 {% capture content %} | 50 {% capture content %} |
| 51 | 51 |
| 52 <div class="tute-target-title"> |
| 53 <h1>{{page.title}}</h1> |
| 54 <h3>Get Dart. Run two apps.</h3> |
| 55 </div> |
| 56 |
| 52 This target gets you ready | 57 This target gets you ready |
| 53 to begin writing web apps in Dart. | 58 to begin writing web apps in Dart. |
| 54 Here you will download the Dart software, | 59 Here you will download the Dart software, |
| 55 and use Dart Editor to | 60 and use Dart Editor to |
| 56 create and run two small applications. | 61 create and run two small applications. |
| 57 | 62 |
| 58 * [Download the Dart software bundle](#download-dart) | 63 * [Download the Dart software bundle](#download-dart) |
| 59 * [What did you get?](#what-did-you-get) | 64 * [What did you get?](#what-did-you-get) |
| 60 * [Start Dart Editor](#start-dart-editor) | 65 * [Start Dart Editor](#start-dart-editor) |
| 61 * [About Dart applications](#what-is-app) | 66 * [About Dart applications](#what-is-app) |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 The <a href="/docs/">Programmer's Guide</a> | 571 The <a href="/docs/">Programmer's Guide</a> |
| 567 points you to docs, articles, | 572 points you to docs, articles, |
| 568 and other resources to help you as you create, | 573 and other resources to help you as you create, |
| 569 test, and deploy Dart code. | 574 test, and deploy Dart code. |
| 570 </li> | 575 </li> |
| 571 </ul> | 576 </ul> |
| 572 | 577 |
| 573 {% endcapture %} | 578 {% endcapture %} |
| 574 | 579 |
| 575 {% include tutorial.html %} | 580 {% include tutorial.html %} |
| OLD | NEW |