mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Merge commit '24664e4bbab4d1805b8c23509798e4305032ebe5'
This commit is contained in:
commit
3a5fc69a71
5 changed files with 23 additions and 2 deletions
|
@ -6,4 +6,14 @@ Feature: Allow nesting of layouts
|
|||
Then I should see "Template"
|
||||
And I should see "Inner"
|
||||
And I should see "Outer"
|
||||
And I should see "Master"
|
||||
And I should see "Master"
|
||||
|
||||
Scenario: YAML Front Matter isn't clobbered with nested layouts
|
||||
Given the Server is running at "nested-layout-app"
|
||||
When I go to "/data-one.html"
|
||||
Then I should see "Page Number One"
|
||||
When I go to "/data-two.html"
|
||||
Then I should see "Page Number Two"
|
||||
When I go to "/data-one.html"
|
||||
Then I should see "Page Number One"
|
||||
When I go to "/data-two.html"
|
||||
|
|
5
fixtures/nested-layout-app/source/data-one.html.erb
Normal file
5
fixtures/nested-layout-app/source/data-one.html.erb
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Page Number One
|
||||
layout: outer
|
||||
---
|
||||
Page #1
|
5
fixtures/nested-layout-app/source/data-two.html.erb
Normal file
5
fixtures/nested-layout-app/source/data-two.html.erb
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Page Number Two
|
||||
layout: outer
|
||||
---
|
||||
Page #2
|
|
@ -1,2 +1,3 @@
|
|||
Master
|
||||
<%= data.page.title %>
|
||||
<%= yield %>
|
|
@ -16,7 +16,7 @@ module Middleman::Extensions
|
|||
if !@sitemap_tree_cache.has_key?(key)
|
||||
auto_hash = Hash.new{ |h,k| h[k] = Hash.new &h.default_proc }
|
||||
|
||||
app.sitemap.all_paths.each do |path|
|
||||
sitemap.all_paths.each do |path|
|
||||
next if !regex.nil? && !path.match(regex)
|
||||
sub = auto_hash
|
||||
path.split( "/" ).each{ |dir| sub[dir]; sub = sub[dir] }
|
||||
|
|
Loading…
Reference in a new issue