30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
Plaintext
!!! Strict
|
|
%html
|
|
%head
|
|
%title
|
|
#{@item[:title]} - Compass
|
|
%meta{ :content => "text/html; charset=utf-8", "http-equiv" => "Content-Type" }
|
|
- if @item[:meta_description]
|
|
%meta{:name => "description", :content => @item[:meta_description]}
|
|
%link(rel="shortcut icon" type="image/png" href="/docs/images/compass_icon.png")
|
|
%link{ :href => "/docs/stylesheets/main.css", :rel => "stylesheet", :type => "text/css", :media => "screen" }
|
|
%link{ :href => "/docs/stylesheets/ui-lightness/jquery-ui-1.7.2.custom.css", :rel => "stylesheet", :type => "text/css", :media => "screen" }
|
|
%script{:src => "/docs/javascripts/jquery-1.3.2.min.js", :type => "text/javascript"}
|
|
%script{:src => "/docs/javascripts/jquery-ui-1.7.2.custom.min.js", :type => "text/javascript"}
|
|
%script{:src => "/docs/javascripts/jquery.tipsy.js", :type => "text/javascript"}
|
|
%body{body_attributes(@item)}
|
|
#container
|
|
#main
|
|
= yield
|
|
#sidebar
|
|
= render "partials/sidebar"
|
|
#footer= @item[:content_for_footer]
|
|
:javascript
|
|
$(function(){
|
|
$('span.color').each(function(i,e){
|
|
e = $(e);
|
|
e.after('<span class="swatch" style="background-color:'+e.text()+';"></span>');
|
|
});
|
|
});
|
|
= render "partials/analytics"
|