20 lines
872 B
Handlebars
20 lines
872 B
Handlebars
{{{html}}}
|
|
|
|
<section class="single-cta">
|
|
{{#has visibility="paid"}}
|
|
<h2 class="single-cta-title">{{t "This post is for paying subscribers only"}}</h2>
|
|
{{/has}}
|
|
{{#has visibility="members"}}
|
|
<h2 class="single-cta-title">{{t "This post is for subscribers only"}}</h2>
|
|
{{/has}}
|
|
{{#has visibility="filter"}}
|
|
<h2 class="single-cta-title">{{t "This post is for subscribers on the {tiers} only" tiers=tiers}}</h2>
|
|
{{/has}}
|
|
{{#if @member}}
|
|
<button class="button single-cta-button" data-portal="account/plans">{{t "Upgrade now"}}</button>
|
|
{{else}}
|
|
<button class="button single-cta-button" data-portal="signup">{{t "Subscribe now"}}</button>
|
|
<br>
|
|
<button class="button-text single-cta-footer" data-portal="signin">{{t "Already have an account?"}} {{t "Sign in"}}</button>
|
|
{{/if}}
|
|
</section> |