-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.php
More file actions
56 lines (46 loc) · 2.18 KB
/
library.php
File metadata and controls
56 lines (46 loc) · 2.18 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
<?php include 'header.php' ?>
<body>
<?php include 'navbar.php' ?>
<div class="body-content">
<?php include 'profile-snapshot.php' ?>
</div>
<div class="container">
<div id="profile-body" class="row">
<?php include 'profile-sidebar.php' ?>
<section id="profile-content" class="span9">
<header class="row">
<div class="span4"><h2>Activity</h2></div>
<div class="span5"></div>
</header>
<article class="row">
<table class="activity table span9">
<div class="empty-box">
<h1>You have no activity. <br><a href="">Start looking for books!</a></h1>
</div>
<tr class="sell-to">
<td><a href="">Peter Frank</a> wants to buy <a href="">Modern China</a> from you.</td> <td><button class="btn btn-small">View Transaction</button></td>
<td><p class="muted pull-right"><small>2:44pm</small></p></td>
</tr>
<tr class="buy-from">
<td><a href="">Ben Halpern</a> listed <a href="">European History and the Modern World</a>.</td> <td><button class="btn btn-small">View Transaction</button></td>
<td><p class="muted pull-right"><small>Yesterday, 1:44pm</small></p></td>
</tr>
<tr class="sell-to">
<td><a href="">Peter Frank</a> wants to buy <a href="">Modern China</a> from you.</td> <td><button class="btn btn-small">View Transaction</button></td>
<td><p class="muted pull-right"><small>2:44pm</small></p></td>
</tr>
<tr class="message">
<td><a href="">Jane Doe</a> sent you a <a href="">message</a>.</td> <td><button class="btn btn-small">View Transaction</button></td>
<td><p class="muted pull-right"><small>2:44pm</small></p></td>
</tr>
</table>
</article>
</section>
</div>
</div>
</div>
<?php include 'footer.php' ?>
<?php include 'javascript.php' ?>
</body>
</body>
</html>