forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists-avatar.html
More file actions
58 lines (48 loc) · 1.55 KB
/
Copy pathlists-avatar.html
File metadata and controls
58 lines (48 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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: Avatars</h1>
</header>
<div class="content has-header">
<div class="list">
<a href="#" class="item item-avatar-left">
<img src="" style="background:black; width:40px; height:40px;">
<h2>Pretty Hate Machine</h2>
<p>Nine Inch Nails</p>
</a>
<a href="#" class="item item-complex item-avatar-left">
<div class="item-content">
<img src="" style="background:black; width:40px; height:40px;">
<h2>Nevermind</h2>
<p>Nirvana</p>
</div>
</a>
<a href="#" class="item item-avatar-right">
<img src="" style="background:black; width:40px; height:40px;">
<h2>License To Ill</h2>
<p>Bestie Boys</p>
</a>
<a href="#" class="item item-complex item-avatar-right">
<div class="item-content">
<img src="" style="background:black; width:40px; height:40px;">
<h2>gjpqy</h2>
<p>Test descenders.</p>
</div>
</a>
</div>
</div>
</body>
</html>