mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
15 lines
657 B
HTML
15 lines
657 B
HTML
![]() |
<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>
|