0 Page Menu block across sibling pages 1 Dave Schuster posted 8 Years Ago Is there a way to include the Page Menu block and/or inherit it from the parent so it is included across the children? We have some internal Rock pages using the pagemenu.ascx block to navigate through the siblings... Like the sidebar on alpha rock page http://alpha.rockrms.com/page/233. Is there a way to include that block when the page is initially created in Rock, or does that block have to be manually added to each page and subsequently maintained individually if there are any included external links added to the end of the lava. Initially thought the an html context might work, but Page isn't available in those blocks. Trying to get away from having to manually edit the following block of lava in the block's template on each page: <ul class="nav nav-pills"> {% for childPage in Page.Pages %} <li {% if childPage.Current == 'true' %}class='active'{% endif %}> <a href="{{ childPage.Url }}">{{ childPage.Title }}</a> </li> {% endfor %} <li><a href="external link" target="_blank">Link</a></li> </ul>