mirror of
https://github.com/danog/sass-site.git
synced 2025-01-22 05:41:42 +01:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
!!! 5
|
|
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!-->
|
|
%html.no-js(lang="en")
|
|
<!--<![endif]-->
|
|
|
|
%head
|
|
%meta(charset="utf-8")/
|
|
|
|
%title= data.page.title || "Sass - CSS with super powers"
|
|
%meta(name="description"){:content => data.page.description || "Syntactically Awesome Style Sheets"}/
|
|
|
|
= partial "layouts/shared/head_compatibility"
|
|
|
|
= stylesheet_link_tag "sass"
|
|
= partial "layouts/shared/head_scripts"
|
|
|
|
= yield_content :head
|
|
|
|
%body{:class => page_classes}
|
|
.page
|
|
= partial "layouts/shared/chromeframe"
|
|
= partial "layouts/shared/banner"
|
|
|
|
%section.section-1.main(role="main")
|
|
.container
|
|
.content= yield
|
|
= partial "layouts/shared/complementary"
|
|
|
|
- if content_for?(:section_2)
|
|
%section.section-2= yield_content :section_2
|
|
|
|
.footer-shim
|
|
|
|
= partial "layouts/shared/contentinfo"
|
|
= partial "layouts/shared/foot_scripts" |