Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Apr 3, 2012
0 parents commit 0c58ef4
Show file tree
Hide file tree
Showing 10 changed files with 109 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Gemfile
@@ -0,0 +1,6 @@
gem 'sinatra'

group :development do
gem 'heroku'
gem 'shotgun'
end
33 changes: 33 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,33 @@
GEM
specs:
addressable (2.2.7)
heroku (2.21.2)
launchy (>= 0.3.2)
rest-client (~> 1.6.1)
rubyzip
term-ansicolor (~> 1.0.5)
launchy (2.0.5)
addressable (~> 2.2.6)
mime-types (1.17.2)
rack (1.4.1)
rack-protection (1.2.0)
rack
rest-client (1.6.7)
mime-types (>= 1.16)
rubyzip (0.9.6.1)
shotgun (0.9)
rack (>= 1.0)
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
term-ansicolor (1.0.7)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
heroku
shotgun
sinatra
3 changes: 3 additions & 0 deletions Readme.markdown
@@ -0,0 +1,3 @@
# Nothing Magical

Our website. We hope you like it.
6 changes: 6 additions & 0 deletions config.ru
@@ -0,0 +1,6 @@
require 'rubygems'
require 'bundler'
Bundler.require

require './main'
run Sinatra::Application
3 changes: 3 additions & 0 deletions main.rb
@@ -0,0 +1,3 @@
get '/' do
erb :index
end
Empty file added public/favicon.ico
Empty file.
6 changes: 6 additions & 0 deletions public/humans.txt
@@ -0,0 +1,6 @@
/* TEAM */

Creator: Sam Soffes
Site: http://samsoff.es
Twitter: samsoffes
Location: San Francisco
1 change: 1 addition & 0 deletions public/robots.txt
@@ -0,0 +1 @@
# It's cool. Do what you want, robots.
32 changes: 32 additions & 0 deletions public/style.css
@@ -0,0 +1,32 @@
/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}section,header,footer,nav,article,aside,figure{display:block;width:100%}mark,time,meter,progress{display:inline}

/* General */

html {
-webkit-font-smoothing:antialiased;
}

body {
width: 640px;
padding: 2em 0;
margin: 0 auto;
}

body, input {
color: #444;
font-family: 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
font-size: 17px;
}

h1 {
color: #000;
font-size: 2em;
font-weight: 700;
margin-bottom: 0.5em;
}

p {
margin:0 0 1em;
}
19 changes: 19 additions & 0 deletions views/index.erb
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nothing Magical</title>
<link rel="author" href="humans.txt" />
<link href="/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Nothing Magical</h1>
<p>We're making some stuff we hope you'll like.</p>
<p>It's not ready yet.</p>
<form action="http://nothingmagical.createsend.com/t/j/s/qyukj/" method="post">
<input type="text" name="cm-qyukj-qyukj" placeholder="your@email.com" />
<input type="submit" value="I'm Curious" />
</form>
<script type="text/javascript">var _gauges=_gauges||[];(function(){var t=document.createElement('script');t.async=true;t.id='gauges-tracker';t.setAttribute('data-site-id','4f7a9a00f5a1f56b90000010');t.src='//secure.gaug.es/track.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(t, s);})();</script>
</body>
</html>

0 comments on commit 0c58ef4

Please sign in to comment.