mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
15 lines
415 B
HTML
15 lines
415 B
HTML
<template name="postSubscribe">
|
|
{{#if canSubscribe}}
|
|
<div class="post-subscribe module grid-block">
|
|
{{#if subscribed}}
|
|
<a class="unsubscribe-link" href="#">
|
|
<span>{{_ 'unsubscribe_from_thread'}}</span>
|
|
</a>
|
|
{{else}}
|
|
<a class="subscribe-link" href="#">
|
|
<span>{{_ 'subscribe_to_thread'}}</span>
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
</template>
|