I'm trying to do something I thought was obvious, but I can't find a doc on this to save my life.. Basically, I want to build a list of links for all children of a page by it's name.. I'm trying this with no luck.. Is there an easy way to accomplish this?
@foreach (var page in Model.Content.Where(page => page.Name.Equals("About")).Children) {
<a href="">...</a>
}