Initial structure.

This commit is contained in:
David East 2015-02-18 12:32:25 -08:00
commit 72153f6a89
6 changed files with 32 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
www

2
404.md Normal file
View File

@ -0,0 +1,2 @@
#404
###Whoops. Looks like what you're looking for can't be found.

6
_layout.jade Normal file
View File

@ -0,0 +1,6 @@
doctype
html
head
link(rel="stylesheet" href="/main.css")
body
!= yield

1
docs/quickstart.md Normal file
View File

@ -0,0 +1 @@
#Quickstart

2
index.md Normal file
View File

@ -0,0 +1,2 @@
#Welcome to Harp.
###This is yours to own. Enjoy.

19
main.scss Normal file
View File

@ -0,0 +1,19 @@
body{
font-family: "Helvetica";
text-align: center;
padding: 50px 20px 0;
background: #f4f4f7;
color: #444;
margin: 0;
}
h1{
font-size: 65px;
line-height: 1.2em;
border-bottom: #CCC solid 1px;
padding: 20px 0;
}
h3{
font-weight: 300;
}