| Index: sky/examples/city-list/index.sky
|
| diff --git a/sky/examples/city-list/index.sky b/sky/examples/city-list/index.sky
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..766ac8b6706b9606c9e96b32f702ad05c2261043
|
| --- /dev/null
|
| +++ b/sky/examples/city-list/index.sky
|
| @@ -0,0 +1,33 @@
|
| +<!--
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +-->
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<meta charset="utf-8">
|
| +<meta name="viewport"
|
| + content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes, width=device-width">
|
| +<link rel="import" href="city-list.sky" />
|
| +<style>
|
| +html, body {
|
| + margin: 0;
|
| + padding: 0;
|
| + font-family: "Roboto", "HelveticaNeue",sans-serif;
|
| + -webkit-font-smoothing: antialiased;
|
| + font-size: 13px;
|
| + color: #222;
|
| + width: 100%;
|
| + height: 100%;
|
| + -webkit-user-select: none;
|
| +}
|
| +</style>
|
| +</head>
|
| +<script>
|
| +window.startLoad = new Date().getTime();
|
| +</script>
|
| +<body>
|
| + <city-list></city-list>
|
| +</body>
|
| +</html>
|
|
|