-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 951 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 951 Bytes
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
<!DOCTYPE html>
<html ng-app="demo">
<head>
<meta charset=utf-8 />
<title>angular listview</title>
<link rel="stylesheet" href="css/listview.css" media="screen" type="text/css">
<style>
body {
color: #444;
}
.tag {
position: relative;
background-color: #DAE6F5;
display: inline-block;
margin: 5px;
padding: 0px 8px;
border-radius: 3px;
border: 1px solid #bbb;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js"></script>
<script src="js/listview.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div ng-controller="DemoCtrl">
<div
data-listview=""
data-template="listview.html"
data-items="items"
data-columns="title, date, filesize, dimension, tags"
data-methods="listview.methods">
</div>
</div>
</body>
</html>