-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.html
89 lines (80 loc) · 3.2 KB
/
groups.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Deuxdrop</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
<script src="js/jquery-1.6.2.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
$(".next").css("visibility", "hidden");
$(".back").click(function () {
window.location = "index.html";
});
$(".back").click(function () {
});
$("li.public").click(function () {
window.location = ("conversation.html?" + $(this).data("conversation"));
});
});
</script>
</head>
<body>
<div id="wrapper">
<!-- header element -->
<div id="header" class="hbox">
<button class="back">Back</button>
<div class="boxFlex">
<h1 id="navTitle" class="overflow">Group</h1>
</div>
<button class="next">Info</button>
</div>
<div class="subHeader hbox">
<div class="boxFlex">
<input id="search" type="text" placeholder="search groups">
</div>
<button class="search">search</button>
<button class="notify">new</button>
</div>
<!-- group inbox list view -->
<ul id="groupInbox" class="conversations">
<li class="public unread hbox" data-conversation="Jean Reily,Andy Chung,James Burke,Bryan Clark">
<div>
<div class="avatar"><img src="i/group.png"></div>
</div>
<div class="msgPreview boxFlex">
<div class="msgPreviewHeader hbox">
<span class="author boxFlex overflow">Riley, Andy, James, Bryan</span>
<span class="participants">& 2 others</span>
<span class="new">(2)</span>
<div class="boxFlexStrong"></div>
<span class="time">23 min</span>
</div>
<div class="hbox">
<div class="snippet boxFlex overflow">
This is a snippet of text from the latest msg
</div>
</div>
</div>
</li>
<li class="public read hbox" data-conversation="Andy Chung,David Ascher,Bryan Clark">
<div>
<div class="avatar"><img src="i/group.png"></div>
</div>
<div class="msgPreview boxFlex">
<div class="msgPreviewHeader hbox">
<span class="author boxFlex overflow">Andy, David, Bryan</span>
<div class="boxFlexStrong"></div>
<span class="time">23 min</span>
</div>
<div class="hbox">
<div class="snippet boxFlex overflow">
This is a snippet of text from the latest msg
</div>
</div>
</div>
</li>
</ul>
</div>
</body>
</html>