Showing Abner changes

This commit is contained in:
2024-10-25 19:41:18 -07:00
parent abd3cf86b7
commit b3426ec6d8
16 changed files with 460 additions and 115 deletions

View File

@@ -0,0 +1,11 @@
{{ with .Params.newsletter_signup }}
{{ if .active }}
<div class="mb-8 {{ .section_class }}">
<h5 class="{{ .title_class }}">{{ .title }}</h5>
<form action="{{ .action_url }}" method="POST" class="{{ .form_class }}">
<input type="email" class="{{ .input_class}}" id="email" name="email" placeholder="{{ .input_placeholder }}" required="" />
<button type="submit" class="{{ .button_class }}">{{ .button_text }}</button>
</form>
</div>
{{ end }}
{{ end }}