mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
58 lines
1.5 KiB
HTML
58 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Lists</title>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
<link href="../../dist/css/ionic.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
position: absolute;;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Lists: Thumbnails</h1>
|
|
</header>
|
|
|
|
<div class="content has-header">
|
|
|
|
<div class="list">
|
|
|
|
<a href="#" class="item item-thumbnail-left">
|
|
<img src="" style="background:black; width:80px; height:80px;">
|
|
<h2>Pretty Hate Machine</h2>
|
|
<p>Nine Inch Nails</p>
|
|
</a>
|
|
|
|
<a href="#" class="item item-complex item-thumbnail-left">
|
|
<div class="item-content">
|
|
<img src="" style="background:black; width:80px; height:80px;">
|
|
<h2>Nevermind</h2>
|
|
<p>Nirvana</p>
|
|
</div>
|
|
</a>
|
|
|
|
<a href="#" class="item item-thumbnail-right">
|
|
<img src="" style="background:black; width:80px; height:80px;">
|
|
<h2>License To Ill</h2>
|
|
<p>Bestie Boys</p>
|
|
</a>
|
|
|
|
<a href="#" class="item item-complex item-thumbnail-right">
|
|
<div class="item-content">
|
|
<img src="" style="background:black; width:80px; height:80px;">
|
|
<h2>Dookie</h2>
|
|
<p>Green Day</p>
|
|
</div>
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|