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

13 lines
466 B
HTML
Raw Normal View History

2014-07-04 14:07:50 +09:00
<template name="postUpvote">
2014-07-08 09:06:49 +09:00
{{#if upvoted}}
2015-01-27 11:44:06 +09:00
<span class="upvote-link voted action" title="{{_ "upvoted"}}">
<i class="icon-check action-icon" aria-hidden></i>
<span class="sr-only">{{_ "upvoted"}}</span>
</span>
2014-07-04 14:07:50 +09:00
{{else}}
2015-01-27 11:44:06 +09:00
<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>
2014-07-04 14:07:50 +09:00
{{/if}}
</template>