-
Notifications
You must be signed in to change notification settings - Fork 16
/
newsletter.php
66 lines (54 loc) · 2.21 KB
/
newsletter.php
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
<?php
$title = 'NIWA Newsletter';
include('_header.php');
?>
<style>
a.special:link {color: #B22222 !important;}
a.special:visited {color: #B22222 !important;}
a.special:hover {color: #B22222 !important;}
a.special:active {color: #B22222 !important;}
.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
background-color: #B22222;
border: none;
padding: 15px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
</style>
<div class="main">
<h1>NIWA Newsletter</h1>
Welcome to NIWA's monthly e-mail newsletter!
Subscribe today to receive a monthly email with updates from your favorite Nintendo wikis, as well as Nintendo news, upcoming releases, featured content, and more.
<br><br>
<div style="width: 100%; text-align: center;">
<a href="http://niwanetwork.us15.list-manage1.com/subscribe?u=20133e4cd65f84564efdc520e&id=2d691e5696">
<div class="button"><span style="color: #FFFFFF;">Click here to subscribe!</span></div>
</a>
</div>
<br><br>
Newsletters are sent out on the first of every month. By signing up, your e-mail address will only be used to send you a newsletter - and you may unsubscribe at any time.
<br><br>
<h1>Archive</h1>
<ul>
<li><a href="/newsletter/2017/05/">May 2017</a></li>
<li><a href="/newsletter/2017/06/">June 2017</a></li>
<li><a href="/newsletter/2017/07/">July 2017</a></li>
<li><a href="/newsletter/2017/08/">August 2017</a></li>
<li><a href="/newsletter/2017/09/">September 2017</a></li>
<li><a href="/newsletter/2017/10/">October 2017</a></li>
<li><a href="/newsletter/2017/11/">November 2017</a></li>
<li><a href="/newsletter/2017/12/">December 2017</a></li>
<li><a href="/newsletter/2018/01/">January 2018</a></li>
<li><a href="/newsletter/2018/02/">February 2018</a></li>
<li><a href="/newsletter/2018/05/">March + April + May 2018</a></li>
</ul>
</div>
<?php
include('_sidebar.php');
include('_footer.php');
?>