parent
9e8c52b84f
commit
51eb8a3ea5
|
@ -0,0 +1,19 @@
|
||||||
|
<section class="subscribe-form">
|
||||||
|
<h3 class="subscribe-form-title">Subscribe to {{@site.title}}</h3>
|
||||||
|
<p class="subscribe-form-description">Get the latest posts delivered right to your inbox</p>
|
||||||
|
<form data-members-form="subscribe">
|
||||||
|
<div class="form-group">
|
||||||
|
<input class="subscribe-email" data-members-email placeholder="youremail@example.com" autocomplete="false" />
|
||||||
|
<button class="button primary" type="submit">
|
||||||
|
<span class="button-content">Subscribe</span>
|
||||||
|
<span class="button-loader">{{> "icons/loader"}}</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="message-success">
|
||||||
|
<strong>Great!</strong> Check your inbox and click the link to confirm your subscription.
|
||||||
|
</div>
|
||||||
|
<div class="message-error">
|
||||||
|
Please enter a valid email address!
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</section>
|
18
post.hbs
18
post.hbs
|
@ -22,20 +22,18 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{!-- Email subscribe form at the bottom of the page --}}
|
{{!-- Email subscribe form at the bottom of the page --}}
|
||||||
{{#if @labs.subscribers}}
|
{{#if @labs.members}}
|
||||||
<section class="subscribe-form">
|
{{> subscribe-form}}
|
||||||
<h3 class="subscribe-form-title">Subscribe to {{@site.title}}</h3>
|
|
||||||
<p>Get the latest posts delivered right to your inbox</p>
|
|
||||||
{{subscribe_form placeholder="youremail@example.com"}}
|
|
||||||
</section>
|
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<footer class="post-content-footer">
|
<footer class="post-content-footer">
|
||||||
|
|
||||||
{{!-- There are two options for how we display the byline/author-info.
|
<div class="post-authors">
|
||||||
If the post has more than one author, we load a specific template
|
Written by
|
||||||
from includes/byline-multiple.hbs, otherwise, we just use the
|
{{#foreach authors}}
|
||||||
default byline. --}}
|
<a href="{{url}}">{{name}}</a>
|
||||||
|
{{/foreach}}
|
||||||
|
</div>
|
||||||
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue