-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 824 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Item list</title>
<script src="http://assets.livestax.com/livestax-0.2.0.min.js"></script>
<link href="http://assets.livestax.com/theme-0.0.1.css" rel="stylesheet" type="text/css" media="all" />
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/main.js"></script>
<style type="text/css">
.active .text-primary {
color: #ddd;
}
</style>
</head>
<body>
<article>
<div class="form-group has-feedback" data-reactid=".0.0">
<input class="form-control js-item-filter" placeholder="Filter items" value="" data-reactid=".0.0.0">
<i class="fa fa-search fa-fw form-control-feedback text-muted" data-reactid=".0.0.1"></i>
</div>
<div class="list-group js-item-list">
</div>
</article>
</body>
</html>