Vulcan/packages/telescope-newsletter/lib/server/templates/emailPostItem.handlebars
2015-07-18 15:31:06 +10:00

53 lines
1.1 KiB
Handlebars

<div class="post-item">
<br >
<span class="post-title">
{{#if thumbnailUrl}}
<img class="post-thumbnail" src="http:{{thumbnailUrl}}"/>&nbsp;
{{/if}}
<a href="{{postLink}}" target="_blank">{{title}}</a>
</span>
<div class="post-meta">
{{#if domain}}
<a class="post-domain" href="">{{domain}}</a>
|
{{/if}}
<span class="post-submitted">
{{#if profileUrl}}
Submitted by <a href="{{profileUrl}}" class="comment-link" target="_blank">{{authorName}}</a>
{{else}}
Submitted by {{authorName}}
{{/if}}
</span>
<span class="post-date">on {{date}}</span>
|
<a href="{{postPageLink}}" class="comment-link" target="_blank">{{commentCount}} Comments</a>
</div>
{{#if body}}
<div class="post-body-excerpt">
{{body}}
<a href="{{postPageLink}}" class="comment-link" target="_blank">Read more</a>
</div>
{{/if}}
{{#if popularComments}}
<div class="post-popular-comments">
<h1>Popular comments</h1>
{{#each popularComments}}
<div class="post-comment-excerpt">
{{body}}
<div class="post-comment-author">{{author}}</div>
</div>
{{/each}}
</div>
{{/if}}
<br>
</div>