-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreparedHtml.html
More file actions
40 lines (39 loc) · 1.39 KB
/
preparedHtml.html
File metadata and controls
40 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div>
<div ng-repeat="entry in vm.entries track by entry.id">
<h3>
<a ui-sref="entry-detail({id:entry.id})">{{entry.title}}</a>
</h3>
<div>
<span ng-bind-html="entry.content"></span><br>
<span>{{entry.date | date: 'medium'}}</span>
<span><a ui-sref="blog-detail({id:entry.blogId})">{{entry.blogName}}</a></span>
</div>
<br>
<div class="btn-group">
<button type="submit"
ui-sref="entry-detail({id:entry.id})"
class="btn btn-info btn-sm">
<span class="glyphicon glyphicon-eye-open"></span>
</button>
<button type="submit"
ui-sref="entry.edit({id:entry.id})"
class="btn btn-primary btn-sm">
<span class="glyphicon glyphicon-pencil"></span>
</button>
<button type="submit"
ui-sref="entry.delete({id:entry.id})"
class="btn btn-danger btn-sm">
<span class="glyphicon glyphicon-remove-circle"></span>
</button>
</div>
</div>
</div>
</body>
</html>