2012-05-25 01:14:17 +02:00
|
|
|
Path: <%= current_page.path %>
|
|
|
|
|
2015-09-09 20:55:56 +02:00
|
|
|
Source: <%= current_page.file_descriptor[:full_path].sub(root + "/", "") %>
|
2012-05-25 01:14:17 +02: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 21:58:23 +01:00
|
|
|
Data: <%= p.data.inspect %>
|
2012-05-25 01:14:17 +02:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|