News:Date
Version: - dateSummary
Returns the created date of the related news item.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetDate("News:Date")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetDate("News:Date"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetDate("News:Date");
}
Outputting the template tag
<!--@News:Date-->
Check if date has a value
<!--@If Defined(@News:Date)-->
Let's output this tag here: <strong><!--@News:Date--></strong>
<!--@EndIf(@News:Date)-->