Module: Bridgetown::LayoutPlaceable
- Included in:
- GeneratedPage, Resource::Base
- Defined in:
- lib/bridgetown-core/concerns/layout_placeable.rb
Instance Method Summary collapse
- #no_layout? ⇒ Boolean
-
#place_in_layout? ⇒ Boolean
Determine whether the file should be placed into layouts.
Instance Method Details
#no_layout? ⇒ Boolean
13 14 15 |
# File 'lib/bridgetown-core/concerns/layout_placeable.rb', line 13 def no_layout? data.layout.nil? || data.layout == "none" || data.layout == false end |
#place_in_layout? ⇒ Boolean
Determine whether the file should be placed into layouts.
Returns false if the document is an asset file or if the front matter
specifies layout: none
9 10 11 |
# File 'lib/bridgetown-core/concerns/layout_placeable.rb', line 9 def place_in_layout? !(yaml_file? || no_layout?) end |