1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/middleman-core/fixtures/traversal-app/source/layout.erb

21 lines
448 B
Text
Raw Normal View History

Path: <%= current_page.path %>
2014-07-15 21:01:45 -04:00
Source: <%= current_page.source_file[:full_path].sub(root + "/", "") %>
2011-12-23 15:04:38 -05:00
<% if current_page.parent %>
Parent: <%= current_page.parent.path %>
<% end %>
<% current_page.children.each do |p| %>
Child: <%= p.path %>
<% end %>
<% current_page.siblings.each do |p| %>
Sibling: <%= p.path %>
<% end %>
<% current_page.children.each do |p| %>
<% if p.data %>
2015-03-20 16:58:23 -04:00
Data: <%= p.data.inspect %>
<% end %>
2011-12-23 15:04:38 -05:00
<% end %>