OLD | NEW |
1 --- | 1 --- |
2 layout: default | 2 layout: default |
3 title: "Target 7: Use <template>" | 3 title: "Use Templates" |
4 description: "Use template loops and conditionals for declarative UI creation." | 4 description: "Use template loops and conditionals for declarative UI creation." |
5 has-permalinks: true | 5 has-permalinks: true |
6 tutorial: | 6 tutorial: |
7 id: web-ui-templates | 7 id: web-ui-templates |
8 next: custom-elements | 8 next: custom-elements |
9 next-title: "Define a Custom DOM Tag" | 9 next-title: "Define a Custom DOM Tag" |
10 prev: web-ui | 10 prev: web-ui |
11 prev-title: "Get Started with Web UI" | 11 prev-title: "Get Started with Web UI" |
12 --- | 12 --- |
13 | 13 |
(...skipping 22 matching lines...) Expand all Loading... |
36 <li> | 36 <li> |
37 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target07/hangman" | 37 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target07/hangman" |
38 target="_blank">hangman</a> | 38 target="_blank">hangman</a> |
39 </li> | 39 </li> |
40 </ul> | 40 </ul> |
41 | 41 |
42 {% endcapture %} | 42 {% endcapture %} |
43 | 43 |
44 {% capture content %} | 44 {% capture content %} |
45 | 45 |
| 46 <div class="tute-target-title"> |
| 47 <h1>{{page.title}}</h1> |
| 48 <h3>Create dynamic elements declaratively.</h3> |
| 49 </div> |
| 50 |
46 <hr> | 51 <hr> |
47 | 52 |
48 <aside class="alert" style="background-color:Lavender;color:SlateBlue"> | 53 <aside class="alert" style="background-color:Lavender;color:SlateBlue"> |
49 <font size="24"> | 54 <font size="24"> |
50 <i class="icon-bullhorn"> </i> | 55 <i class="icon-bullhorn"> </i> |
51 </font> | 56 </font> |
52 | 57 |
53 The Dart Web UI team recently | 58 The Dart Web UI team recently |
54 <a href="https://groups.google.com/a/dartlang.org/forum/#!topic/web-ui/6laXXxR
tA7k">announced</a> | 59 <a href="https://groups.google.com/a/dartlang.org/forum/#!topic/web-ui/6laXXxR
tA7k">announced</a> |
55 a port of the Polymer project: | 60 a port of the Polymer project: |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 Sigmund Cherem's article, | 334 Sigmund Cherem's article, |
330 <a href="/articles/dart-web-components/">Web UI Package</a>, | 335 <a href="/articles/dart-web-components/">Web UI Package</a>, |
331 contains several interactive examples on the page | 336 contains several interactive examples on the page |
332 and the corresponding source code. | 337 and the corresponding source code. |
333 </li> | 338 </li> |
334 </ul> | 339 </ul> |
335 | 340 |
336 {% endcapture %} | 341 {% endcapture %} |
337 | 342 |
338 {% include tutorial.html %} | 343 {% include tutorial.html %} |
OLD | NEW |