| OLD | NEW |
| (Empty) |
| 1 <!-- Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 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. --> | |
| 4 | |
| 5 <!DOCTYPE html> | |
| 6 <html> | |
| 7 <head> | |
| 8 <title>Swarm</title> | |
| 9 <!-- This tag improves the experience on mobile browsers. --> | |
| 10 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximu
m-scale=1.0, user-scalable=0"> | |
| 11 <!-- These tags improve web apps on ios. --> | |
| 12 <meta name="apple-mobile-web-app-capable" content="yes"> | |
| 13 | |
| 14 <link rel="icon" type="image/png" href="favicon.png"> | |
| 15 | |
| 16 <link rel="stylesheet" type="text/css" href="swarm.css"/> | |
| 17 </head> | |
| 18 <body> | |
| 19 <div id="appSplash"> | |
| 20 <div class="splash"> | |
| 21 <div class="splashImg"></div> | |
| 22 <!-- From http://www.flickr.com/photos/jimmybrown/4041963981 | |
| 23 under CC-BY-2.0 license 2011-09-21 | |
| 24 modified with "convert -level 0%,90% -quality 70". --> | |
| 25 </div> | |
| 26 <div class="header"> | |
| 27 <div class="title"> | |
| 28 Swarm | |
| 29 </div> | |
| 30 </div> | |
| 31 <div class="footer"> | |
| 32 <a href="http://www.flickr.com/photos/jimmybrown/4041963981/">photo by
jimmybrown</a> under <a href="http://creativecommons.org/licenses/by/2.0/deed.en
">CC-BY-2.0</a> on 2011-09-21, contrast and encoding modified | |
| 33 </div> | |
| 34 </div> | |
| 35 | |
| 36 <div style="display:none"> | |
| 37 <script type="application/dart" src="swarm.dart"></script> | |
| 38 </div> | |
| 39 <script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/clie
nt/dart.js"></script> | |
| 40 </body> | |
| 41 </html> | |
| OLD | NEW |