sass scaffolding

This commit is contained in:
Alex Wolfe 2015-02-18 16:57:27 -08:00
parent c43dde4c61
commit 7a64f52344
9 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,4 @@
nav
ul
li <a href="/docs/quickstart.html">Quick Start</a>
li <a href="/docs/guide.html">Guide</a>

View File

@ -5,3 +5,4 @@ nav
li <a href="/features.html">Features</a> li <a href="/features.html">Features</a>
li <a href="/docs/">Docs</a> li <a href="/docs/">Docs</a>
li <a href="/about/">About</a> li <a href="/about/">About</a>
li <a href="/install/">Install</a>

View File

@ -0,0 +1,8 @@
doctype
html
head
link(rel="stylesheet" href="/resources/css/main.css")
body
!= partial("../_includes/_main-nav")
!= partial("../_includes/_docs-nav")
!= yield

1
public/docs/index.md Normal file
View File

@ -0,0 +1 @@
#Docs home

1
public/features.jade Normal file
View File

@ -0,0 +1 @@
h1 features

View File

View File

View File

View File

@ -0,0 +1,7 @@
@import 'options';
@import 'base';
@import 'theme';
body {
background: #EEE;
}