alertbar.html 1.1 KB

123456789101112131415161718192021222324
  1. <!-- Bottom Alert Bar
  2. ================================================== -->
  3. {{ if isset .Site.Params "mailchimp" }}
  4. <div class="alertbar">
  5. <div class="container text-center">
  6. <span>
  7. {{ if isset .Site.Params "logo" }}
  8. <img src="{{ .Site.Params.logo | urlize | relURL }}" alt="logo">
  9. {{ else }}
  10. <span style="font-family:Righteous;">{{.Site.Title}}</span>
  11. {{ end }}
  12. &nbsp; Never miss a <b>story</b>, subscribe to our newsletter
  13. </span>
  14. <form action="{{ with .Site.Params.mailchimp }}{{.}}{{end}}" method="post" name="mc-embedded-subscribe-form" target="_blank" novalidate>
  15. <input type="email" placeholder="Email" name="EMAIL" autocomplete="on" required>
  16. <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
  17. <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="{{ with .Site.Params.mailprotect }}{{.}}{{end}}" tabindex="-1" value=""></div>
  18. <input type="submit" value="Subscribe" name="subscribe" >
  19. </form>
  20. </div>
  21. </div>
  22. {{ end }}