Vulcan/packages/telescope-posts/lib/client/templates/modules/post_info.html

11 lines
416 B
HTML
Raw Normal View History

2015-05-18 10:30:08 +09:00
<template name="post_info">
2015-08-16 17:34:54 +09:00
<div class="{{moduleClass}}" aria-live="off">
<span class="points">{{baseScore}}</span>
<span class="unit">{{pointsUnitDisplayText}}</span>
{{#if postedAt}}<span class="post-time">{{timeAgo postedAt}}</span>{{/if}}
{{#if canEdit this}}
| <a href="{{pathFor route='post_edit' _id=_id}}" class="edit-link goto-edit">{{_ "edit"}}</a>
{{/if}}
</div>
</template>