Forum:FirstAnswer.Author.Image.Clean
Version: - stringSummary
Returns the path to the image of first answer author.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Forum:FirstAnswer.Author.Image.Clean")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Forum:FirstAnswer.Author.Image.Clean"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Forum:FirstAnswer.Author.Image.Clean");
}
Outputting the template tag
<!--@Forum:FirstAnswer.Author.Image.Clean-->
Check if string has a value
<!--@If Defined(@Forum:FirstAnswer.Author.Image.Clean)-->
Let's output this tag here: <strong><!--@Forum:FirstAnswer.Author.Image.Clean--></strong>
<!--@EndIf(@Forum:FirstAnswer.Author.Image.Clean)-->