| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Put the Page Title here" | 3 title: "Put the Page Title here" |
| 4 description: "This should be exciting! Attention grabbing! Life changing!" | 4 description: "This should be exciting! Attention grabbing! Life changing!" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 tutorial: | 6 tutorial: |
| 7 id: this-should-be-unique | 7 id: this-should-be-unique |
| 8 next: path-to-next-target |
| 9 next-title: "Title of next target" |
| 10 prev: path-to-prev-target |
| 11 prev-title: "Title of previous target" |
| 8 --- | 12 --- |
| 9 | 13 |
| 10 {% capture whats_the_point %} | 14 {% capture whats_the_point %} |
| 11 | 15 |
| 12 * This text gets captured | 16 * This text gets captured |
| 13 * ...and used in the left column above the TOC. | 17 * ...and used in the left column above the TOC. |
| 14 * It should be a list of factoids | 18 * It should be a list of factoids |
| 15 | 19 |
| 16 {% endcapture %} | 20 {% endcapture %} |
| 17 | 21 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback" | 36 href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback" |
| 33 target="_blank"> | 37 target="_blank"> |
| 34 comments and suggestions | 38 comments and suggestions |
| 35 </a> | 39 </a> |
| 36 are appreciated. | 40 are appreciated. |
| 37 Thank you for your patience. | 41 Thank you for your patience. |
| 38 </div> | 42 </div> |
| 39 | 43 |
| 40 This is the page's content | 44 This is the page's content |
| 41 | 45 |
| 42 Questions and problems: | |
| 43 | 46 |
| 44 * how to CSSify the "What's the point?" list | 47 Target Order |
| 45 * figure out the TOC to the left. | 48 ----------------------- |
| 46 - it should be linked | 49 Get Started |
| 47 - it would be nice if it were also auto-generated | 50 Connect Dart & HTML |
| 48 and the page titles were variables that were set in | 51 Add Elements to the DOM |
| 49 one place and then used in other places | 52 Remove DOM Elements |
| 50 - also, maybe the pages have long names | 53 Install Shared Packages |
| 51 for the actual page titles and short names for the TOC? | 54 Get Started with Web UI |
| 52 * a path indicator at the top might be nice. like: | 55 Use Templates |
| 53 Dartboard-> Get Started-> Run Command Line App | 56 Define a Custom DOM Tag |
| 54 * some artwork: Dartboard logo, Dartboard Targets, darts for what's the point. | 57 **Polymer |
| 55 * each page has a unique id ... how best to make use of this? | 58 Fetch Data Dynamically |
| 56 | 59 Get Input from a Form |
| 57 | 60 Use IndexedDB |
| 58 <!-- footers with links --> | 61 **Write for Mobie Devices |
| 59 <hr> | |
| 60 | |
| 61 <div class="row"> | |
| 62 <div class="span3"> | |
| 63 <a href="/docs/tutorials/forms/"><i class="icon-chevron-left"> </i> Get input
from a form</a> | |
| 64 </div> | |
| 65 <div class="span3"> | |
| 66 <a href="http://code.google.com/p/dart/issues/entry?template=Tutorial%20feedback
" | |
| 67 target="_blank"> | |
| 68 <i class="icon-comment"> </i> | |
| 69 Send feedback | |
| 70 </a> | |
| 71 </div> | |
| 72 <div class="span3"> | |
| 73 <a href="/docs/tutorials/" class="pull-right">Home <i class="icon-chevron-righ
t"> </i> </a> | |
| 74 </div> | |
| 75 </div> | |
| 76 | 62 |
| 77 {% endcapture %} | 63 {% endcapture %} |
| 78 | 64 |
| 79 {% include tutorial.html %} | 65 {% include tutorial.html %} |
| OLD | NEW |