IPublishedContent
Get started
@{
var pageName = Model.Name;
var childPages = Model.Children();
}
<h1>@pageName</h1>Properties & Extension Methods
Collections & Filtering
IsHelpers
Last updated
Was this helpful?
IPublishedContent is a strongly typed model for content, media and members and is used to render content in your views for your website.
To access the current page in your templates, copy-paste the below Razor code.
@{
var pageName = Model.Name;
var childPages = Model.Children();
}
<h1>@pageName</h1>Listing and explanation of IPublishedContent properties and standard helpers for Content and Media.
Methods for IPublishedContent collections and filtering.
A library of extension methods to simplify working with IPublishedContent in collections to modify your HTML output. Examples of using IsHelpers could be injecting CSS classes for alternating rows or to modify margins.
Last updated
Was this helpful?
Was this helpful?