-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-newsletter.hbs
48 lines (44 loc) · 1.18 KB
/
page-newsletter.hbs
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
43
44
45
46
47
48
{{!--
This template is used for the newsletter page.
--}}
{{!-- This block preloads specific assets for the newsletter page --}}
{{#contentFor "preload"}}
<link rel="preload" href="{{asset "css/auth.css"}}" as="style" />
{{/contentFor}}
{{!-- This block loads specific styles for the newsletter page --}}
{{#contentFor "styles"}}
<link
rel="stylesheet"
type="text/css"
href="{{asset "css/auth.css"}}"
media="screen"
/>
{{/contentFor}}
{{!-- The tag below means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!< default}}
<div class="f-main-container">
{{> header}}
<div class="f-auth-container">
{{#post}}
<main
class="f-auth-container__wrapper {{^if feature_image}}no-image{{/if}}"
role="main"
>
{{#if feature_image}}
<div class="f-auth-image">
<img
data-src="{{img_url feature_image size="m"}}"
alt=""
class="lazy"
width="300"
height="500"
>
</div>
{{/if}}
{{> "newsletter-form"}}
</main>
{{/post}}
{{> blob-shape alt_version="true"}}
</div>
</div>