Vulcan/packages/telescope-newsletter/lib/client/templates/newsletter_banner.html
2014-09-08 17:29:55 +09:00

15 lines
No EOL
657 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-module 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="button newsletter-button">Get Newsletter<span class="button-loader"><img src="/img/loading-balls.svg"/></span></button>
</form>
<h4 class="newsletter-subscribed">Thanks for subscribing!</h4>
<a href="#" class="newsletter-dismiss">×</a>
</div>
{{/if}}
</template>