32 lines
2.2 KiB
Handlebars
32 lines
2.2 KiB
Handlebars
{{#has visibility="paid"}}
|
|
<div class="members-cta global-radius">
|
|
<h2>{{t "This post is for paying subscribers only"}}</h2>
|
|
{{#if @member}}
|
|
<p class="global-excerpt">{{t "Upgrade your account to read the post and get access to the full library of posts for paying subscribers only."}}</p>
|
|
<a href="javascript:" class="members-cta-button global-button" data-portal="account/plans">{{t "See plans"}}</a>
|
|
{{else}}
|
|
<p class="global-excerpt">{{t "Sign up now and upgrade your account to read the post and get access to the full library of posts for paying subscribers only."}}</p>
|
|
<a class="members-cta-button global-button" href="{{@site.url}}/signup/">{{t "Sign up now"}}</a>
|
|
<small class="members-cta-question global-question">{{t "Already have an account?"}} <a href="{{@site.url}}/signin/">{{t "Sign in"}}</a></small>
|
|
{{/if}}
|
|
</div>
|
|
{{else has visibility="tiers"}}
|
|
<div class="members-cta global-radius">
|
|
<h2>{{plural tiers.length empty=(t "No tiers") singular=(t "This post is for subscribers with the tier:") plural=(t "This post is for subscribers with any of the tiers:")}} {{tiers lastSeparator=(t "or") suffix=""}}</h2>
|
|
{{#if @member}}
|
|
<p class="global-excerpt">{{t "Upgrade your account to get access to the post."}}</p>
|
|
<a href="javascript:" class="members-cta-button global-button" data-portal="account/plans">{{t "See plans"}}</a>
|
|
{{else}}
|
|
<p class="global-excerpt">{{t "Sign up now and upgrade your account to get access to the post."}}</p>
|
|
<a class="members-cta-button global-button" href="{{@site.url}}/signup/">{{t "Sign up now"}}</a>
|
|
<small class="members-cta-question global-question">{{t "Already have an account?"}} <a href="{{@site.url}}/signin/">{{t "Sign in"}}</a></small>
|
|
{{/if}}
|
|
</div>
|
|
{{else has visibility="members"}}
|
|
<div class="members-cta global-radius">
|
|
<h2>{{t "This post is for subscribers only"}}</h2>
|
|
<p class="global-excerpt">{{t "Sign up now to read the post and get access to the full library of posts for subscribers only."}}</p>
|
|
<a class="members-cta-button global-button" href="{{@site.url}}/signup/">{{t "Sign up now"}}</a>
|
|
<small class="members-cta-question global-question">{{t "Already have an account?"}} <a href="{{@site.url}}/signin/">{{t "Sign in"}}</a></small>
|
|
</div>
|
|
{{/has}} |