Gallery.Image.LastWriteTime
Version: - stringSummary
Returns timesatamp od last write of the image.
Settings
Not documented
Examples
Outputting the template tag
@GetString("Gallery.Image.LastWriteTime")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Gallery.Image.LastWriteTime"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Gallery.Image.LastWriteTime");
}
Outputting the template tag
<!--@Gallery.Image.LastWriteTime-->
Check if string has a value
<!--@If Defined(@Gallery.Image.LastWriteTime)-->
Let's output this tag here: <strong><!--@Gallery.Image.LastWriteTime--></strong>
<!--@EndIf(@Gallery.Image.LastWriteTime)-->