sass scaffolding
This commit is contained in:
parent
c43dde4c61
commit
7a64f52344
|
@ -0,0 +1,4 @@
|
||||||
|
nav
|
||||||
|
ul
|
||||||
|
li <a href="/docs/quickstart.html">Quick Start</a>
|
||||||
|
li <a href="/docs/guide.html">Guide</a>
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
|
@ -0,0 +1 @@
|
||||||
|
#Docs home
|
|
@ -0,0 +1 @@
|
||||||
|
h1 features
|
|
@ -0,0 +1,7 @@
|
||||||
|
@import 'options';
|
||||||
|
@import 'base';
|
||||||
|
@import 'theme';
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #EEE;
|
||||||
|
}
|
Loading…
Reference in New Issue