mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 10:28:22 +01:00
c5b0886812
I plan to phase out the idea of a version name in favor of a purely-numeric identifier.
52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
!!!5
|
|
%html.no-js(lang="en"){:class => data.page.head_classes}
|
|
%head
|
|
%meta(charset="utf-8")/
|
|
%meta(http-equiv="X-UA-Compatible" content="IE=edge")/
|
|
%title= page_title
|
|
= partial "layouts/head/meta"
|
|
= partial "layouts/head/link"
|
|
= partial "layouts/head/css"
|
|
= partial "layouts/head/js"
|
|
|
|
%body{class: page_classes}
|
|
.page
|
|
= partial "layouts/roles/alert"
|
|
.pop-stripe
|
|
= partial "layouts/regions/banner"
|
|
= partial "layouts/regions/page_header"
|
|
|
|
.body
|
|
.container
|
|
.content
|
|
- if content_for?(:introduction)
|
|
%p.introduction= yield_content :introduction
|
|
|
|
%main.main.content-primary(role="main")=yield
|
|
|
|
- if content_for?(:complementary)
|
|
.complementary.content-secondary(role="complementary")= yield_content :complementary
|
|
|
|
|
|
- if content_for?(:section_middle)
|
|
%section.section-middle
|
|
.container= yield_content :section_middle
|
|
|
|
.alert.release
|
|
.container
|
|
%ul
|
|
- if data.respond_to?(:version)
|
|
%li Current Release: <span class="release-name">#{data.version.number}</span>
|
|
- else
|
|
%li Current Release: <span class="release-name">???</span>
|
|
%li= link_to "Release Notes", "/documentation/file.SASS_CHANGELOG.html"
|
|
%li= link_to "Fork on GitHub", "https://github.com/sass/sass"
|
|
%li= link_to "Implementation Guide", "implementation"
|
|
|
|
- if content_for?(:section_bottom)
|
|
%section.section-bottom
|
|
.container= yield_content :section_bottom
|
|
|
|
= partial "layouts/regions/contentinfo"
|
|
= partial "layouts/foot/js"
|