Vulcan/client/views/posts/modules/post_upvote.html

13 lines
No EOL
466 B
HTML

<template name="postUpvote">
{{#if upvoted}}
<span class="upvote-link voted action" title="{{_ "upvoted"}}">
<i class="icon-check action-icon" aria-hidden></i>
<span class="sr-only">{{_ "upvoted"}}</span>
</span>
{{else}}
<a class="upvote-link not-voted action" href="#" title="{{_ "upvote_"}}">
<i class="icon-up action-icon" aria-hidden="true"></i>
<span class="sr-only">{{_ "upvote_"}}</span>
</a>
{{/if}}
</template>