get blueprint on the new layout.

This commit is contained in:
Chris Eppstein 2010-04-20 23:33:48 -07:00
parent 8a01916356
commit 34fe52c116
21 changed files with 23 additions and 3 deletions

View File

@ -3,6 +3,7 @@ title: Blueprint Module
crumb: Blueprint
framework: blueprint
stylesheet: _blueprint.scss
layout: blueprint
classnames:
- reference
meta_description: The Blueprint Framework -- ported to Sass.

View File

@ -3,6 +3,7 @@ title: Blueprint Buttons
crumb: Buttons
framework: blueprint
stylesheet: blueprint/_buttons.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Colors
crumb: Colors
framework: blueprint
stylesheet: blueprint/_colors.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Debug
crumb: Debug
framework: blueprint
stylesheet: blueprint/_debug.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Fancy Type
crumb: Fancy Type
framework: blueprint
stylesheet: blueprint/_fancy-type.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Form
crumb: Form
framework: blueprint
stylesheet: blueprint/_form.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Grid
crumb: Grid
framework: blueprint
stylesheet: blueprint/_grid.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint IE Compatibility
crumb: Internet Explorer
framework: blueprint
stylesheet: blueprint/_ie.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Interaction
crumb: Interaction
framework: blueprint
stylesheet: blueprint/_interaction.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Link Icons
crumb: Link Icons
framework: blueprint
stylesheet: blueprint/_link-icons.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Liquid
crumb: Liquid
framework: blueprint
stylesheet: blueprint/_liquid.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Print
crumb: Print
framework: blueprint
stylesheet: blueprint/_print.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Reset
crumb: Reset
framework: blueprint
stylesheet: blueprint/_reset.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Rtl
crumb: Rtl
framework: blueprint
stylesheet: blueprint/_rtl.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Scaffolding
crumb: Scaffolding
framework: blueprint
stylesheet: blueprint/_scaffolding.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Typography
crumb: Typography
framework: blueprint
stylesheet: blueprint/_typography.scss
layout: blueprint
classnames:
- reference
---

View File

@ -3,6 +3,7 @@ title: Blueprint Utilities
crumb: Utilities
framework: blueprint
stylesheet: blueprint/_utilities.scss
layout: blueprint
classnames:
- reference
---

View File

@ -0,0 +1,3 @@
- render 'main' do
%aside(role="sidebar")= render 'partials/sidebar', :default_stylesheet => "_blueprint.scss"
%article= yield

View File

@ -1,3 +1,3 @@
- render 'main' do
%aside(role="sidebar")= render 'partials/sidebar'
%aside(role="sidebar")= render 'partials/sidebar', :default_stylesheet => "_compass.scss"
%article= yield

View File

@ -16,7 +16,7 @@
#main
= yield
#sidebar
= render "partials/sidebar"
= render "partials/sidebar", :default_stylesheet => "_compass.scss"
#footer= render "partials/footer"
%script(src="/docs/javascripts/fixups.js" deferred)
= render "partials/analytics"

View File

@ -1,2 +1,2 @@
%nav#local-nav
%ul= item_tree(reference_item(:stylesheet => (@item[:nav_stylesheet] || "_compass.scss")), :depth => 2, :omit_self => true)
%ul= item_tree(reference_item(:stylesheet => (@item[:nav_stylesheet] || @default_stylesheet)), :depth => 2, :omit_self => true)