mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
10 lines
415 B
HTML
10 lines
415 B
HTML
<template name="post_info">
|
|
<div class="post-meta-item" 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>
|