rimarima/themes/hugo-liftoff/layouts/partials/footer/newsletter.html
Adrian Amaglio c09f092db4 init
2023-11-17 10:54:41 +01:00

29 lines
1.0 KiB
HTML

<!-- Reusable template for a newsletter opt-in -->
<section class="section">
<div class="container--sm">
<h2 class="newsletter-header">
{{- with .Site.Params.newsletter_header -}}
{{- . -}}
{{- else -}}
Subscribe for Post Updates
{{- end -}}
</h2>
<p class="newsletter-desc">
{{- with .Site.Params.newsletter_description -}}
{{- . -}}
{{- else -}}
Enter your email below to get notified of new posts.
{{- end -}}
</p>
<form id="newsletter-form" name="newsletter" method="POST" {{ with .Site.Params.netlify_forms }}data-netlify="{{ . }}"{{ end }}>
<input type="email" id="newsletter-form--input" name="email" placeholder="Your best email..." title="Enter your best email" required>
<button type="submit" id="newsletter-form--submit" class="btn-primary">
{{- with .Site.Params.newsletter_submit -}}
{{- . -}}
{{- else -}}
Subscribe
{{- end -}}
</button>
</form>
</div>
</section>