mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
21 lines
No EOL
448 B
Text
21 lines
No EOL
448 B
Text
Path: <%= current_page.path %>
|
|
|
|
Source: <%= current_page.source_file[:full_path].sub(root + "/", "") %>
|
|
|
|
<% 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 %>
|
|
Data: <%= p.data.inspect %>
|
|
<% end %>
|
|
<% end %> |