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

13 lines
428 B
HTML
Raw Normal View History

2015-05-18 10:30:08 +09:00
<template name="post_upvote">
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"}}">
2015-03-24 13:13:04 +09:00
{{{icon "voted" "icon-circle"}}}
<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_"}}">
2015-03-24 13:13:04 +09:00
{{{icon "upvote" "icon-circle"}}}
<span class="sr-only">{{_ "upvote_"}}</span>
</a>
2014-07-04 14:07:50 +09:00
{{/if}}
</template>