Item
Available tags
Comments.Rating
Returns a generic avarage value for the ratings.
@GetInteger("Comments.Rating")
Comments.Rating.Rounded
Returns a generic avarage value for the ratings - rounded up to nearest integer.
@GetDouble("Comments.Rating.Rounded")
Comments.Rating.Rounded2
Returns a generic avarage value for the ratings - rounded to nearest half.
@GetDouble("Comments.Rating.Rounded2")
Comments.RepliesCount
Returns the number of replies on the comment.
@GetInteger("Comments.RepliesCount")
Comments.Stars
Returns a generic avarage value for the ratings - displayed with stars.
@GetString("Comments.Stars")
Comments.TotalCount
Returns the total count of comments including replies.
@GetInteger("Comments.TotalCount")
News:[CustomFieldSystemName]
Returns the value of the news custom field.
@GetString("News:[CustomFieldSystemName]")
News:BackPicture
Returns the <a href> code for the back button with an image.
@GetString("News:BackPicture")
News:BackPictureClean
Returns the image name for the back button image.
@GetString("News:BackPictureClean")
News:CategoryDescription
Returns the description of the news category.
@GetString("News:CategoryDescription")
News:CategoryName
Returns the category name of the news category.
@GetString("News:CategoryName")
News:ImageText
Returns the caption text for the news items image.
@GetString("News:ImageText")
News:Initials
Returns the initials of the author of the current news item.
@GetString("News:Initials")
News:RelatedNewsGroupName
Returns the heading for the related news list.
@GetString("News:RelatedNewsGroupName")
Available loops
Comments
The Comments
loop lets you display available data of specific comment.
@foreach (LoopItem item in GetLoop("Comments")){ <p>@item.GetValue("TagName")</p> }
Comments.Newfirst
The Comments
loop lets you display available data of specific comment when the comments ordered descending by date .
@foreach (LoopItem item in GetLoop("Comments.Newfirst")){ <p>@item.GetValue("TagName")</p> }
RelatedNews
The RelatedNews
loop lets you display information about related news items.
@foreach (LoopItem item in GetLoop("RelatedNews")){ <p>@item.GetValue("TagName")</p> }