mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
95 lines
2.8 KiB
HTML
95 lines
2.8 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="../dist/ionicons.css" rel="stylesheet">
|
|
<link href="../dist/ionic.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<section>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Customers</h1>
|
|
</header>
|
|
|
|
<main class="content-wrapper">
|
|
<div class="content has-header">
|
|
<ul id="list" class="list">
|
|
<a href="#" class="list-item">
|
|
<div class="list-item-content">
|
|
Sasafras
|
|
<i class="icon-arrow-right"></i>
|
|
</div>
|
|
<div class="list-item-buttons">
|
|
<button class="button button-danger">Delete</button>
|
|
</div>
|
|
</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>
|
|
<p><a class="button button-secondary" href="index.html">Homepage</a></p>
|
|
</div>
|
|
</main>
|
|
|
|
</section>
|
|
|
|
<script src="../dist/ionic.js"></script>
|
|
|
|
<script>
|
|
var l = document.getElementById('list');
|
|
var list = new ionic.views.List({el: l});
|
|
</script>
|
|
</body>
|
|
</html>
|