Gallery.Image.Thumb.Large
Version: - stringSummary
Returns the detail image.
Settings
The value is generated automatically.
Remarks
The value is returned as a HTML code snippet containing an <img>
tag.
The size of the image is defined in the paragraph module settings in the Image section.
Examples
Outputting the template tag
@GetString("Gallery.Image.Thumb.Large")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Gallery.Image.Thumb.Large"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Gallery.Image.Thumb.Large");
}
Outputting the template tag
<!--@Gallery.Image.Thumb.Large-->
Check if string has a value
<!--@If Defined(@Gallery.Image.Thumb.Large)-->
Let's output this tag here: <strong><!--@Gallery.Image.Thumb.Large--></strong>
<!--@EndIf(@Gallery.Image.Thumb.Large)-->