2022-04-05 15:03:17 -06:00
|
|
|
{{#if shouldShow}}
|
|
|
|
<div class="custom-gated-topic-container">
|
|
|
|
<div class="custom-gated-topic-content">
|
|
|
|
<div class="custom-gated-topic-content--header">
|
2022-04-13 08:51:23 -07:00
|
|
|
{{theme-i18n "heading_text"}}
|
2022-04-05 15:03:17 -06:00
|
|
|
</div>
|
2022-04-27 08:07:21 +02:00
|
|
|
|
2022-04-05 15:03:17 -06:00
|
|
|
<p class="custom-gated-topic-content--text">
|
2022-04-13 08:51:23 -07:00
|
|
|
{{theme-i18n "subheading_text"}}
|
2022-04-05 15:03:17 -06:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="custom-gated-topic-content--cta">
|
|
|
|
<div class="custom-gated-topic-content--cta__signup">
|
2022-04-27 08:07:21 +02:00
|
|
|
{{d-button
|
|
|
|
action=(route-action "showCreateAccount")
|
|
|
|
class="btn-primary btn-large sign-up-button"
|
|
|
|
translatedLabel=(theme-i18n "signup_cta_label")
|
|
|
|
}}
|
2022-04-05 15:03:17 -06:00
|
|
|
</div>
|
2022-04-27 08:07:21 +02:00
|
|
|
|
2022-04-05 15:03:17 -06:00
|
|
|
<div class="custom-gated-topic-content--cta__login">
|
2022-04-27 08:07:21 +02:00
|
|
|
{{d-button
|
|
|
|
action=(route-action "showLogin")
|
|
|
|
id="cta-login-link"
|
|
|
|
class="btn btn-text login-button"
|
|
|
|
translatedLabel=(theme-i18n "login_cta_label")
|
|
|
|
}}
|
2022-04-05 15:03:17 -06:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-04 12:42:25 +00:00
|
|
|
{{/if}}
|