Vulcan/packages/telescope-newsletter/lib/client/templates/newsletter_banner.html
Jeremy Shimko 8e3c5218da allow hero modules to be full width of viewport
and constrain current internal hero modules back into the .content-wrapper max-width
2015-07-09 10:26:33 -04:00

17 lines
826 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="newsletter_banner">
{{#if showBanner}}
<div class="content-wrapper">
<div class="newsletter-banner grid-module grid banner">
<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 btn btn-primary">{{_ "get_newsletter"}}<span class="button-loader"><img src="/packages/telescope_core/public/img/loading-balls.svg"/></span></button>
</form>
<h4 class="newsletter-subscribed">{{_ "thanks_for_subscribing"}}</h4>
<a href="#" class="newsletter-dismiss banner-dismiss">×</a>
</div>
</div>
{{/if}}
</template>