mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
16 lines
415 B
HTML
16 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>
|