compass/doc-src/layouts/example.haml

17 lines
617 B
Plaintext
Raw Normal View History

2010-01-27 06:08:13 +00:00
!!! 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]}
2010-03-28 04:17:16 +00:00
%link(rel="shortcut icon" type="image/png" href="/docs/images/compass_icon.png")
2010-01-28 09:11:42 +00:00
%link{ :href => "/docs/stylesheets/example.css", :rel => "stylesheet", :type => "text/css", :media => "screen" }
2010-01-27 06:08:13 +00:00
%style{:type => "text/css"}= example_css
%body{body_attributes(@item)}
#container
#main
= yield
2010-03-28 04:17:53 +00:00
= render "partials/analytics"