2010-01-21 06:25:44 +00:00
|
|
|
!!! Strict
|
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%title
|
|
|
|
#{@item[:title]} - Compass
|
|
|
|
%meta{ :content => "text/html; charset=utf-8", "http-equiv" => "Content-Type" }
|
2010-03-28 06:22:40 +00:00
|
|
|
- if @item[:meta_description]
|
|
|
|
%meta{:name => "description", :content => @item[:meta_description]}
|
2010-03-28 04:17:16 +00:00
|
|
|
%link(rel="shortcut icon" type="image/png" href="/docs/images/compass_icon.png")
|
2010-04-20 18:09:09 +00:00
|
|
|
%link{ :href => "/docs/stylesheets/legacy/main.css", :rel => "stylesheet", :type => "text/css", :media => "screen" }
|
2010-01-28 09:11:42 +00:00
|
|
|
%script{:src => "/docs/javascripts/jquery-1.3.2.min.js", :type => "text/javascript"}
|
2010-01-21 19:54:47 +00:00
|
|
|
%body{body_attributes(@item)}
|
2010-01-21 06:25:44 +00:00
|
|
|
#container
|
|
|
|
#main
|
|
|
|
= yield
|
|
|
|
#sidebar
|
2010-04-21 06:33:48 +00:00
|
|
|
= render "partials/sidebar", :default_stylesheet => "_compass.scss"
|
2010-03-30 00:49:13 +00:00
|
|
|
#footer= render "partials/footer"
|
2010-04-20 18:09:09 +00:00
|
|
|
%script(src="/docs/javascripts/fixups.js" deferred)
|
2010-03-28 04:17:53 +00:00
|
|
|
= render "partials/analytics"
|