-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsummaryTemplate.html
35 lines (33 loc) · 1.07 KB
/
summaryTemplate.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
{{#posts}}
<div class="postHeader">
<div class="pull-left">
<img class="userImage" alt="{{from.name}}" src="{{avatar from.id}}" />
</div>
<div>
<h4><a href="https://www.facebook.com/{{from.id}}">{{from.name}}</a></h4>
<a href="post.html?id={{id}}"><small>{{dateFormat created_time format="MMMM DD, YYYY HH:mm"}}</small></a>
</div>
</div>
{{#if message}}
<p>{{{urlify message}}}</p>
{{/if}}
{{#if caption}}
<div class="linkpreviewbox">
<blockquote>
{{#if caption}}
<p>
<small>{{caption}}</small>
</p>
{{/if}}
{{#if description}}<footer>{{description}}</footer>{{/if}}
</blockquote>
</div>
{{/if}}
<div class="highlight">
<div>
<span class="glyphicon glyphicon-thumbs-up"></span> {{total_likes}} people like this.
<span class="glyphicon glyphicon-comment"></span> {{total_comments}} comments.
</div>
</div>
<br/>
{{/posts}}