-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.html
188 lines (172 loc) · 5.69 KB
/
index.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-90614976-1"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-90614976-1')
</script>
<link rel="icon" href="favicon.png" type="image/x-icon" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<title>React Native Newsletter</title>
<link
href="https://use.fontawesome.com/releases/v5.0.2/css/all.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="/normalize.css" type="text/css" />
<link rel="stylesheet" href="/newsletter.css" type="text/css" />
<script src="/ie.js" type="application/javascript"></script>
<script src="/newsletter.js" type="application/javascript"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<div class="container">
<header>
<section class="banner">
<div class="banner-about">
<h1>We have a new website!</h1>
<span class="about">
The React Native Newsletter has a new home on the web! Head on over to
<a href="https://reactnativenewsletter.com" target="_blank">our new website</a>
for new issues, article suggestions, and more.
</span>
</div>
<a class="banner-cta" href="https://reactnativenewsletter.com" target="_blank">
<span class="cta">Visit the new site</span>
<span class="icon arrow-right"></span>
</a>
</section>
<nav class="desktop">
<ul>
<li>
<a href="/" id="logo"></a>
</li>
<li>
<a href="/suggest-article.html">Suggest Article</a>
</li>
<li>
<a href="/issues.html">Past Issues</a>
</li>
<li>
<a
href="mailto:[email protected]?subject=React%20Native%20Newsletter%20Sponsorship"
target="_blank">
Contact us
</a>
</li>
</ul>
<ul class="social">
<li>
<a
href="https://twitter.com/rnnewsletter"
target="_blank"
class="icon twitter"
></a>
</li>
</ul>
</nav>
<nav class="mobile">
<a href="#" id="logo"></a>
<a href="#" id="open-menu"></a>
</nav>
</header>
<main>
<nav class="menu">
<div class="close-wrapper">
<a href="#" class="close"></a>
</div>
<ul class="links">
<li>
<a href="/sponsor.html">Become a Sponsor</a>
</li>
<li>
<a href="/suggest-article.html">Suggest Article</a>
</li>
<li>
<a href="/issues.html">Past Issues</a>
</li>
</ul>
<ul class="social">
<li>
<a
href="https://twitter.com/rnnewsletter"
target="_blank"
class="icon twitter"
></a>
</li>
</ul>
</nav>
<section class="content">
<article id="splash">
<h1>A curated, fun to read newsletter all about React Native</h1>
<h2>
Free bi-weekly summary of React Native news, articles, libraries,
apps, and more!
</h2>
<div class="subscribe-form">
<form
action="//red.us3.list-manage.com/subscribe/post?u=78d9e37a94fa0b522939163d4&id=93c55ddabd"
method="post"
id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
>
<div class="input-field email-input">
<input
type="email"
value=""
name="EMAIL"
required
class="required email"
id="mce-EMAIL"
autocomplete="off"
placeholder="Your Email Address"
/>
<button type="submit" class="addon"></button>
<span class="hint">Please enter a valid email</span>
</div>
</form>
</div>
</article>
<div id="illustration"></div>
</section>
<footer>
<article class="bio">
<div class="photo"></div>
<div class="details">
<h1>Jon Major Condon, Editor-in-Chief</h1>
<p>Jon Major specializes in React Native at Infinite Red.</p>
<!-- <ul class="social">
<li>
<a class="icon twitter" target="_blank" href="#"></a>
</li>
<li>
<a class="icon github" target="_blank" href="#"></a>
</li>
</ul> -->
</div>
</article>
<section class="sponsor-wrap">
<section class="sponsor">
<h1>Presented By</h1>
<a class="logo" href="https://infinite.red" target="_blank"></a>
</section>
</section>
</footer>
</main>
</div>
</body>
</html>