-
Notifications
You must be signed in to change notification settings - Fork 22
/
sponsor.html
154 lines (142 loc) · 4.67 KB
/
sponsor.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
<!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" />
<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>
</ul>
<ul class="social">
<!--<li>
<a href="https://medium.com/react-native-newsletter" target="_blank" class="icon medium"></a>
</li>-->
<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="/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">
<section class="new-site-message">
<h1>You can find this page on our new site</h1>
<p>Many of our pages have moved! Article suggestions have moved to a new website.</p>
</section>
</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>
<script
src="https://unpkg.com/react@16/umd/react.development.js"
crossorigin
></script>
<script
src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"
crossorigin
></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="sponsorPage.js"></script>
</body>
</html>