diff --git a/README.md b/README.md
new file mode 100644
index 0000000..46ff51d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# Weeklypedia-landing
+
+Landing page for [Weeklypedia](https://github.com/hatnote/weeklypedia) signups.
\ No newline at end of file
diff --git a/conf/weekly.nginx.conf b/conf/weekly.nginx.conf
new file mode 100644
index 0000000..52a8c90
--- /dev/null
+++ b/conf/weekly.nginx.conf
@@ -0,0 +1,9 @@
+server {
+ server_name weekly.hatnote.com;
+ listen 80;
+ root /home/hatnote/weeklypedia-landing/static/;
+ access_log /home/hatnote/weeklypedia-landing/logs/access.log combined buffer=128k flush=10s;
+ error_log /home/hatnote/weeklypedia-landing/logs/error.log;
+
+ expires 1d;
+}
\ No newline at end of file
diff --git a/static/.DS_Store b/static/.DS_Store
new file mode 100644
index 0000000..82bbd65
Binary files /dev/null and b/static/.DS_Store differ
diff --git a/static/css/.DS_Store b/static/css/.DS_Store
new file mode 100644
index 0000000..5008ddf
Binary files /dev/null and b/static/css/.DS_Store differ
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..6bebfcb
--- /dev/null
+++ b/static/css/style.css
@@ -0,0 +1,64 @@
+body {
+ margin: 5em 0;
+ background-color: rgb(237, 224, 206);
+}
+article, header {
+ background-color: #fff;
+ color: #222222;
+ margin: auto;
+ padding: 1.5em;
+ width: 600px;
+}
+header {
+ background-color: #fff;
+ text-align: center;
+}
+header h1 {
+ border-top: 1px solid #222222;
+ color: #222;
+ margin: 1em 0 0 0;
+}
+header h1 span {
+ background: #fff;
+ padding: 0 20px;
+ position: relative;
+ top: -20px;
+}
+header p {
+ font-style: italic;
+ margin-top: -10px;
+}
+section.announce {
+ width: 600px;
+ padding: 0.1em 1.5em;
+ margin: 0 auto;
+ background: rgb(245, 245, 245);
+}
+section.announce p {
+ padding: 0.5em;
+ font: 800 12pt serif;
+}
+section.announce .date {
+ font: 300 12pt serif;
+}
+p {
+ color: #666;
+ line-height: 1.5em;
+ font: 400 12pt serif;
+}
+h2 {
+ margin: 0;
+}
+a {
+ color: #348eda;
+}
+a:hover {
+ color: red;
+}
+.buttons li {
+ font: 400 12pt serif;
+ line-height: 1.5em;
+}
+.button {
+ width: 20em;
+}
\ No newline at end of file
diff --git a/static/index.html b/static/index.html
new file mode 100644
index 0000000..32f8584
--- /dev/null
+++ b/static/index.html
@@ -0,0 +1,50 @@
+
+
+ Weeklypedia
+
+
+
+
+
+
+
+
+ Weeklypedia
+ A list the most edited Wikipedia articles and discussions from the last week.
+ Delivered every friday by email.
+
+
+ Next issue: January 24, 2013 (Volume 1)
+
+
+
+ Sign up!
+ Join a list to receive a weekly email with the top twenty Wikipedia articles and top five Wikipedia discussions from this week.
+
+
+
+ Other lanugages
+ Wikipedia is available in over 280 languages. To request a list in any other language (or help internationalizing the template text) please email me or submit an issue on github .
+
+
+
+
+
+
\ No newline at end of file