mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
42 lines
893 B
Handlebars
42 lines
893 B
Handlebars
<div class="post-item">
|
|
<br >
|
|
|
|
<span class="post-title">
|
|
{{#if thumbnailUrl}}
|
|
<img class="post-thumbnail" src="http:{{thumbnailUrl}}"/>
|
|
{{/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">
|
|
{{{htmlBody}}}
|
|
<a href="{{postPageLink}}" class="comment-link" target="_blank">Read more</a>
|
|
</div>
|
|
{{/if}}
|
|
|
|
|
|
<br>
|
|
</div>
|
|
|