OLD | NEW |
---|---|
1 {{! Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 {{! Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 for details. All rights reserved. Use of this source code is governed by a | 2 for details. All rights reserved. Use of this source code is governed by a |
3 BSD-style license that can be found in the LICENSE file. }} | 3 BSD-style license that can be found in the LICENSE file. }} |
4 | 4 |
5 <div class="intro"> | 5 <div class="intro"> |
6 <h1>Welcome to pub.dartlang.org!</h1> | 6 <h1>Welcome to pub.dartlang.org!</h1> |
7 <p> | 7 <p> |
8 This is your friendly repository of packages of software for the | 8 This is your friendly repository of packages of software for the |
9 <a href="http://dartlang.org">Dart programming language</a>. Explore | 9 <a href="http://dartlang.org">Dart programming language</a>. Explore |
10 packages here and install them using <strong>pub</strong>, the package | 10 packages here and install them using <strong>pub</strong>, the package |
11 manager for Dart. | 11 manager for Dart. |
12 </p> | 12 </p> |
13 <a class="get-started" href="/doc">Get started</a> | 13 <a class="get-started" href="https://www.dartlang.org/tools/pub/get-started.ht ml">Get started</a> |
nweiz
2014/02/14 02:57:12
It would be nice to keep the line length below 80
Bob Nystrom
2014/02/14 22:10:22
Done.
| |
14 </div> | 14 </div> |
15 <h2>Recently updated packages</h2> | 15 <h2>Recently updated packages</h2> |
16 <table> | 16 <table> |
17 <thead> | 17 <thead> |
18 <tr> | 18 <tr> |
19 <th>Package</th> | 19 <th>Package</th> |
20 <th>Version</th> | 20 <th>Version</th> |
21 <th>Description</th> | 21 <th>Description</th> |
22 <th width="100">Updated</th> | 22 <th width="100">Updated</th> |
23 </tr> | 23 </tr> |
24 </thead> | 24 </thead> |
25 <tbody> | 25 <tbody> |
26 {{#recent_packages}} | 26 {{#recent_packages}} |
27 <tr> | 27 <tr> |
28 <th><a href="/packages/{{name}}">{{name}}</a></th> | 28 <th><a href="/packages/{{name}}">{{name}}</a></th> |
29 <td><span class="version">{{latest_version.version}}</span></td> | 29 <td><span class="version">{{latest_version.version}}</span></td> |
30 <td>{{#description}}{{ellipsized_description}}{{/description}}</td> | 30 <td>{{#description}}{{ellipsized_description}}{{/description}}</td> |
31 <td>{{short_updated}}</td> | 31 <td>{{short_updated}}</td> |
32 </tr> | 32 </tr> |
33 {{/recent_packages}} | 33 {{/recent_packages}} |
34 </tbody> | 34 </tbody> |
35 <tfoot> | 35 <tfoot> |
36 <tr> | 36 <tr> |
37 <td colspan="4"><a href="/packages">More packages...</a></td> | 37 <td colspan="4"><a href="/packages">More packages...</a></td> |
38 </tr> | 38 </tr> |
39 </tfoot> | 39 </tfoot> |
40 </table> | 40 </table> |
OLD | NEW |