Vulcan/client/views/posts/modules/post_content.html
2014-07-07 11:49:21 +09:00

27 lines
No EOL
1.1 KiB
HTML

<template name="postContent">
<div class="post-info">
{{#if sticky}}
<span class="post-sticky"><i class="icon-pin"></i><span>{{i18n "Sticky"}}</span></span>
{{/if}}
<h3 class="post-heading">
<a href="{{postLink}}" class="post-title" target="{{postTarget}}">{{title}}</a>
{{#if url}}<span class="post-domain">{{domain}}</span>{{/if}}
</h3>
<p class="post-meta"><span class="points">{{upvotes}} <span class="unit">{{pointsUnitDisplayText}} </span></span>by <a class="post-author" href="{{profileUrl}}">{{authorName}}</a> <span class="post-time">{{ago}}</span>
{{#if can_edit}}
| <a href="/posts/{{_id}}/edit" class="edit-link goto-edit">Edit</a>
{{/if}}
{{#if currentUser.isAdmin}}
{{#if postsMustBeApproved}}
|
{{#if isApproved}}
<a href="#" class="unapprove-link goto-edit">Unapprove</a>
{{else}}
<a href="#" class="approve-link goto-edit">Approve</a>
{{/if}}
{{/if}}
| {{i18n "score"}}: {{short_score}}, {{i18n "clicks"}}: {{clicks}}
{{/if}}
</p>
</div>
</template>