-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfooter.hbs
More file actions
42 lines (42 loc) · 1.67 KB
/
footer.hbs
File metadata and controls
42 lines (42 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<footer class='footer'>
<div class='footer__inner'>
<section class='footer__top'>
<img class='footer__logo' src={{asset 'images/full-logo.png'}} />
<div class='kg-button-card'>
<a class='kg-btn' href='#/portal/signup'>Membership</a>
</div>
</section>
<section class='footer__links'>
{{navigation type='secondary'}}
</section>
<section class='footer__bottom'>
<form class='footer__form' data-members-form='subscribe'>
<div class='footer__form__row'>
<input
data-members-email
name='email'
id='get-involved-email'
placeholder='Enter your email...'
required='true'
type='email'
/>
<div class='kg-button-card'>
<button class='kg-btn' type='submit'>Sign Up</button>
</div>
</div>
<span data-members-error></span>
<span data-members-success></span>
</form>
<div class='footer__bottom__socials'>
<div class='footer__bottom__socials__links'>
{{#get 'pages' filter="title:'Footer - Socials'" limit='1'}}
{{#foreach pages}}
{{content}}
{{/foreach}}
{{/get}}
</div>
<small>©{{date format='YYYY'}} Ruby Central. All Rights Reserved.</small>
</div>
</section>
</div>
</footer>