mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
88 lines
2.7 KiB
HTML
88 lines
2.7 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Lists</title>
|
|
|
|
<!-- Sets initial viewport load and disables zooming -->
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="../../dist/framework-with-theme.css">
|
|
<link rel="stylesheet" href="app.css">
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular.min.js"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-animate.min.js"></script>
|
|
|
|
<script src="app.js"></script>
|
|
</head>
|
|
<body ng-app="peopleApp">
|
|
|
|
<section>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Customers</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<ul class="list">
|
|
<a href="#" class="list-item">
|
|
Sasafras
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Candy
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<li class="list-divider">Other things</li>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
<a href="#" class="list-item">
|
|
Cheese cords
|
|
<i class="icon-arrow-right"></i>
|
|
</a>
|
|
</ul>
|
|
</main>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|