| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Articles" | 3 title: "Articles" |
| 4 description: "Read about the Dart language and tools with this collection of art
icles, style guides, and more." | 4 description: "Read about the Dart language and tools with this collection of art
icles, style guides, and more." |
| 5 --- | 5 --- |
| 6 | 6 |
| 7 {% comment %} | 7 {% comment %} |
| 8 NOTE: Within each section, articles should be in chronological order | 8 NOTE: Within each section, articles should be in chronological order |
| 9 (newest on top). | 9 (newest on top). |
| 10 {% endcomment %} | 10 {% endcomment %} |
| 11 | 11 |
| 12 <h1> Articles </h1> | 12 <h1> Articles </h1> |
| 13 | 13 |
| 14 <p> | 14 <p> |
| 15 Read these articles for insight into Dart programming topics. | 15 Read these articles for insight into Dart programming topics. |
| 16 </p> | 16 </p> |
| 17 | 17 |
| 18 <p> | 18 <p> |
| 19 See also: <a href="/docs/tutorials/">Dart Tutorials (A Game of Darts)</a> | 19 See also: <a href="/docs/tutorials/">Dart Tutorials</a> |
| 20 </p> | 20 </p> |
| 21 | 21 |
| 22 <div class="row"> | 22 <div class="row"> |
| 23 <div class="span6"> | 23 <div class="span6"> |
| 24 <h2>Everyday Dart </h2> | 24 <h2>Everyday Dart </h2> |
| 25 {% articles everyday-dart %} | 25 {% articles everyday-dart %} |
| 26 <h2>Performance</h2> | 26 <h2>Performance</h2> |
| 27 {% articles performance %} | 27 {% articles performance %} |
| 28 </div> | 28 </div> |
| 29 <div class="span6"> | 29 <div class="span6"> |
| 30 <h2>Language Details</h2> | 30 <h2>Language Details</h2> |
| 31 {% articles language-details %} | 31 {% articles language-details %} |
| 32 </div> | 32 </div> |
| 33 </div> | 33 </div> |
| 34 | 34 |
| 35 <div class="row"> | 35 <div class="row"> |
| 36 <div class="span6"> | 36 <div class="span6"> |
| 37 <h2>Libraries and APIs</h2> | 37 <h2>Libraries and APIs</h2> |
| 38 {% articles libraries-and-apis %} | 38 {% articles libraries-and-apis %} |
| 39 </div> | 39 </div> |
| 40 <div class="span6"> | 40 <div class="span6"> |
| 41 <h2>Design Decisions</h2> | 41 <h2>Design Decisions</h2> |
| 42 {% articles design-decisions %} | 42 {% articles design-decisions %} |
| 43 </div> | 43 </div> |
| 44 </div> | 44 </div> |
| OLD | NEW |