2014-07-28 03:58:17 +02:00
|
|
|
!!!5
|
2013-10-09 12:30:53 +02:00
|
|
|
%html.no-js(lang="en"){:class => data.page.head_classes}
|
2012-09-10 01:37:46 +02:00
|
|
|
%head
|
2013-10-14 21:03:08 +02:00
|
|
|
%meta(charset="utf-8")/
|
2014-07-28 03:58:17 +02:00
|
|
|
%meta(http-equiv="X-UA-Compatible" content="IE=edge")/
|
2013-10-09 12:30:53 +02:00
|
|
|
%title= page_title
|
|
|
|
= partial "layouts/head/meta"
|
2014-07-28 04:34:14 +02:00
|
|
|
= partial "layouts/head/link"
|
2013-10-14 21:52:40 +02:00
|
|
|
= partial "layouts/head/css"
|
|
|
|
= partial "layouts/head/js"
|
2012-10-30 05:19:53 +01:00
|
|
|
|
2013-10-09 12:30:53 +02:00
|
|
|
%body{class: page_classes}
|
2012-11-28 12:59:42 +01:00
|
|
|
.page
|
2014-07-28 04:34:14 +02:00
|
|
|
= partial "layouts/roles/alert"
|
2013-10-09 12:30:53 +02:00
|
|
|
.pop-stripe
|
|
|
|
= partial "layouts/regions/banner"
|
|
|
|
= partial "layouts/regions/page_header"
|
2012-11-29 18:33:08 +01:00
|
|
|
|
2013-10-12 23:54:15 +02:00
|
|
|
.body
|
2014-07-31 07:26:38 +02:00
|
|
|
.container
|
|
|
|
.content
|
|
|
|
- if content_for?(:introduction)
|
|
|
|
%p.introduction= yield_content :introduction
|
|
|
|
%main.main(role="main")=yield
|
2013-10-12 23:39:55 +02:00
|
|
|
|
2013-10-12 23:54:15 +02:00
|
|
|
- if content_for?(:section_middle)
|
|
|
|
%section.section-middle
|
|
|
|
.container= yield_content :section_middle
|
2014-07-23 00:27:15 +02:00
|
|
|
|
2013-10-09 12:30:53 +02:00
|
|
|
.alert.release
|
|
|
|
.container
|
2013-10-11 23:03:13 +02:00
|
|
|
%ul
|
2013-10-12 21:49:34 +02:00
|
|
|
- if data.respond_to?(:version)
|
2017-07-14 01:23:02 +02:00
|
|
|
%li Current Release: <span class="release-name">#{data.version.number}</span>
|
2013-10-12 21:49:34 +02:00
|
|
|
- else
|
|
|
|
%li Current Release: <span class="release-name">???</span>
|
2015-10-14 02:02:12 +02:00
|
|
|
%li= link_to "Release Notes", "/documentation/file.SASS_CHANGELOG.html"
|
2017-06-05 22:48:52 +02:00
|
|
|
%li= link_to "Fork on GitHub", "https://github.com/sass/sass"
|
2015-10-14 02:02:12 +02:00
|
|
|
%li= link_to "Implementation Guide", "implementation"
|
2013-10-09 12:30:53 +02:00
|
|
|
|
2013-10-12 23:39:55 +02:00
|
|
|
- if content_for?(:section_bottom)
|
|
|
|
%section.section-bottom
|
|
|
|
.container= yield_content :section_bottom
|
|
|
|
|
2013-10-09 12:30:53 +02:00
|
|
|
= partial "layouts/regions/contentinfo"
|
2013-10-14 21:52:40 +02:00
|
|
|
= partial "layouts/foot/js"
|