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"}}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<span class="sr-only">{{_ "upvoted"}}</span>
|
2014-12-14 12:38:48 +09:00
|
|
|
</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"}}}
|
2015-02-12 23:44:59 -06:00
|
|
|
<span class="sr-only">{{_ "upvote_"}}</span>
|
2014-12-14 12:38:48 +09:00
|
|
|
</a>
|
2014-07-04 14:07:50 +09:00
|
|
|
{{/if}}
|
|
|
|
</template>
|