sass-site/old_source/layouts/has_both_sidebars.haml

26 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-10-24 00:06:39 +02:00
= wrap_layout :layout do
2018-12-28 04:07:00 +01:00
.sl-l-medium-holy-grail
.sl-l-medium-holy-grail__body
2019-12-13 03:15:39 +01:00
%nav.sl-l-medium-holy-grail__navigation(aria-label='Content navigation' role='navigation')
2018-10-27 08:37:10 +02:00
= yield_content :navigation
2018-10-24 00:06:39 +02:00
2018-12-28 04:07:00 +01:00
.sl-l-medium-holy-grail__main
2018-12-28 04:12:55 +01:00
.sl-l-large-holy-grail
.sl-l-large-holy-grail__body
2018-12-29 01:50:04 +01:00
- if content_for?(:complementary)
- has_contents = current_page.data.table_of_contents ? 'sl-l-large-holy-grail__complementary--contents' : ''
2019-12-13 03:52:14 +01:00
.sl-l-large-holy-grail__complementary{class: has_contents}
2018-12-29 00:22:59 +01:00
= yield_content :complementary
2018-10-24 00:06:39 +02:00
.sl-l-large-holy-grail__main.docSearch-content
- container = typedoc? || current_page.data.no_container ? '' : 'sl-l-container sl-l-container--small'
- container << ' sl-l-container--overview' if current_page.data.intro
2018-12-28 04:07:00 +01:00
%div{class: container}
2019-09-02 22:26:31 +02:00
= yield_content :before_introduction
2018-12-28 04:07:00 +01:00
- if current_page.data.introduction
- center_introduction = current_page.data.center_introduction ? 'sl-c-introduction--center' : ''
.sl-c-introduction{class: center_introduction}
= markdown_wrap current_page.data.introduction
2018-10-24 00:06:39 +02:00
2018-12-29 01:29:22 +01:00
= Typogruby.improve(yield)