The direct answer is Umbraco.TypedContent (id). But! If you want to get the βNewsβ node from anywhere, I recommend the following. Using ids is problematic for some multilingual settings, and if the identifier changes, it will stop working.
// 1- Get root node var site = Model.Content.AncestorOrSelf("Site"); // 2- Get news node var news = site.Descendant("News");
This approach is more dynamic, and now you can use your node news to loop it over children or whatever you need. For this you need special types of documents for site types and news.
Hope this helps!
source share