-
Notifications
You must be signed in to change notification settings - Fork 1
/
inbox.php
99 lines (88 loc) · 3.55 KB
/
inbox.php
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?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="span3">
<h2>Inbox (3)</h2>
</div>
<div class="span6">
<ul class="nav nav-pills pull-right">
<li class="active">
<a href="#">View All (3)</a>
</li>
<li><a href="#">View Unread (1)</a></li>
</ul>
</div>
</header>
<article class="row">
<ul class="inbox table span9">
<li class="message-row">
<img src="img/ben.png" class="hidden-phone">
<div class="chat-preview span6">
<h5>Ben Halpern</h5>
<a href=""><strong>Yeah, I am totally interested in buying that book...</strong></a>
<p><small>April 5</small></p>
</div>
<div class="books-in-queue hidden-phone">
<ul>
<li>Wild</li>
<li>Modern China</li>
<li>The Perks of Being a Wallflower</li>
</ul>
</div>
<div class="transaction-status">
<h5 class="active">Active</h5>
</div>
</li>
<li class="message-row">
<img src="img/ben.png">
<div class="chat-preview">
<h5>Ben Halpern</h5>
<a href="">Yeah, I am totally interested in buying that book...</a>
<p><small>April 5</small></p>
</div>
<div class="books-in-queue">
<ul>
<li>Wild</li>
<li>Modern China</li>
<li>The Perks of Being a Wallflower</li>
</ul>
</div>
<div class="transaction-status">
<h5 class="active">Active</h5>
</div>
</li>
<li class="message-row">
<img src="img/ben.png">
<div class="chat-preview">
<h5>Ben Halpern</h5>
<a href="">Thanks for the transaction!</a>
<p><small>April 5</small></p>
</div>
<div class="books-in-queue">
<ul>
<li>The Perks of Being a Wallflower</li>
</ul>
</div>
<div class="transaction-status">
<h5 class="completed">Completed</h5>
</div>
</li>
</ul>
</article>
</section>
</div>
</div>
</div>
<?php include 'footer.php' ?>
<?php include 'javascript.php' ?>
</body>
</body>
</html>