-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpostTemplate.html
52 lines (49 loc) · 1.61 KB
/
postTemplate.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
<div>
<div class="postHeader">
<div class="pull-left">
<img class="userImage" alt="{{name}}" src="{{avatar from.id}}" />
</div>
<div>
<h4><a href="https://www.facebook.com/{{from.id}}">{{from.name}}</a></h4>
<a href="https://www.facebook.com/{{id}}"><small>{{dateFormat created_time format="MMMM DD, YYYY HH:mm"}}</small></a>
</div>
</div>
</div>
{{#if message}}
<p>{{{urlify message}}}</p>
{{/if}}
<div class="linkpreviewbox">
<img src='{{picture}}' width="30%" />
<blockquote>
<p>
<a href='{{link}}'>{{name}}</a>
{{#if caption}}<small>{{{urlify caption}}}</small>{{/if}}
</p>
{{#if description}}<footer>{{{urlify description}}}</footer>{{/if}}
</blockquote>
</div>
{{#if likes.data}}
<div class="highlight">
<div>
<span class="glyphicon glyphicon-thumbs-up"></span>
<abbr title='{{#each likes.data}}{{name}}
{{/each}}'>{{likes.data.length}} people</abbr> like this.
</div>
</div>
{{/if}}
<br/>
{{#if comments.data}}
<div class="highlight">
{{#each comments.data}}
<div>
<p><b><img src="{{avatar from.id}}"/><a href="https://www.facebook.com/{{from.id}}">{{from.name}}</a></b></p>
{{#if message}}<p>{{{urlify message}}}</p>{{/if}}
<div>
<small><a href="https://www.facebook.com/{{id}}">{{dateFormat created_time format="MMMM DD, YYYY HH:mm"}}</a></small>
<span class="glyphicon glyphicon-thumbs-up"></span>
{{like_count}}
</div>
<hr/>
</div>
{{/each}}
</div>
{{/if}}