-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
welcome-premium.hbs
59 lines (51 loc) · 2.31 KB
/
welcome-premium.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
49
50
51
52
53
54
55
56
57
58
59
{{!< default}}
{{#contentFor 'htmlLang'}}{{@site.locale}}{{/contentFor}}
{{#contentFor 'meta'}}
<meta name="robots" content="noindex, nofollow">
{{/contentFor}}
{{#contentFor 'styles'}}
<link rel='stylesheet' type='text/css' href='{{asset 'css/welcome.css'}}' />
{{/contentFor}}
{{#contentFor 'title'}}Welcome!! - {{meta_title}}{{/contentFor}}
<div class='mds-welcome'>
<div class='mds-container'>
{{#if @member}}
<header class='mds-header'>
<div>
<h1>Welcome in the community!</h1>
</div>
</header>
<section class='mds-welcome-content'>
{{> "images/community"}}
<p class='mds-welcome-description'>
I'm really happy to see you join our little community of developers
and entrepreneurs learning together. You will now receive a
notification email each week with the new content as promised.
</p>
<p class='mds-welcome-description'>
Please note that, by default, you will receive all the emails in English.
If you prefer to switch to French, check your profile page or <a href="#/portal/account/newsletters">click here</a> direclty.
</p>
<p class='mds-welcome-description'>
Also, if you like the content here or have any idea to improve the blog
<strong>can you please send me your feedbacks?</strong>(Use <a
href='mailto:[email protected]'
title='Contact support team'
rel='nofollow noreferrer'
>[email protected]</a>) I would love to read them!
</p>
<p class='mds-welcome-link'>
<a class='button' href='/posts/'>
Read blog posts
</a>
<a class='button highlighted' href='https://courses.mindsers.blog/'>
Browse our courses!
</a>
</p>
</section>
{{else}}
{{! Not logged in: Redirect to signin }}
<script>window.location = '{{@site.url}}/login/';</script>
{{/if}}
</div>
</div>