Vulcan/packages/telescope-digest/lib/client/newsletter_banner.html

15 lines
No EOL
568 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template name="newsletterBanner">
{{#if showBanner}}
<div class="newsletter-banner grid">
<form>
<h4 class="newsletter-tagline">Receive the best of {{siteName}} right in your inbox</h4>
{{#if isNotConnected}}
<input class="newsletter-email" type="email" placeholder="Your Email">
{{/if}}
<button class="newsletter-button">Get Newsletter</button>
</form>
<h4 class="newsletter-subscribed">Thanks for subscribing!</h4>
<a href="#" class="newsletter-dismiss">×</a>
</div>
{{/if}}
</template>