Files
Journal-ghost/partials/content-cta.hbs
2021-07-27 19:30:35 +08:00

19 lines
664 B
Handlebars

{{{html}}}
<section class="gh-cta">
{{#has visibility="paid"}}
<h4 class="gh-cta-title">This post is for paying subscribers only</h4>
{{/has}}
{{#has visibility="members"}}
<h4 class="gh-cta-title">This post is for subscribers only</h4>
{{/has}}
<div class="gh-cta-actions">
{{#if @member}}
<a class="gh-btn gh-primary-btn" href="#/portal/account/plans">Upgrade now</a>
{{else}}
<a class="gh-btn gh-primary-btn" href="#/portal/signup">Subscribe now</a>
<a class="gh-cta-link" href="#/portal/signin">Already have an account? Sign in.</a>
{{/if}}
</div>
</section>