Category:Moderator.Image

Version: - string  

Summary

Returns an image of moderator. 

Settings

The value is based to image set to user in Users module.

Examples

Outputting the template tag

@GetString("Category:Moderator.Image")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("Category:Moderator.Image"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("Category:Moderator.Image"); }

Outputting the template tag

<!--@Category:Moderator.Image-->

Check if string has a value

<!--@If Defined(@Category:Moderator.Image)--> Let's output this tag here: <strong><!--@Category:Moderator.Image--></strong> <!--@EndIf(@Category:Moderator.Image)-->