Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Please help me how can i achieve in page navigation. I am new to umbraco.
I have template for title name, description.
I am considering having a sub menu on the left navigation(#titlename).
Please let me know how i can achieve this.
What would you like to show in the sidemenu? The children of the page you are on?
A really simple way to show all the children of the current page would be:
<ul> @foreach (var page in Model.Content.Children()) { <li><a href="@page.Url">@page.Name</a></li> } </ul>
See https://our.umbraco.org/documentation/Reference/Querying/IPublishedContent/Collections
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
In Page Navigation
Please help me how can i achieve in page navigation. I am new to umbraco.
I have template for title name, description.
I am considering having a sub menu on the left navigation(#titlename).
Please let me know how i can achieve this.
What would you like to show in the sidemenu? The children of the page you are on?
A really simple way to show all the children of the current page would be:
See https://our.umbraco.org/documentation/Reference/Querying/IPublishedContent/Collections
is working on a reply...