News:Back.Picture

Version: - string  

Summary

Returns the image for the back button.

Settings

The value is based on the Back button settings in the paragraph module settings.

(Page > Paragraph > Module tab > (Advanced) > Display panel).

Examples

Outputting the template tag

@GetString("News:Back.Picture")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("News:Back.Picture"); }

Outputting the template tag

<!--@News:Back.Picture-->

Check if string has a value

<!--@If Defined(@News:Back.Picture)--> Let's output this tag here: <strong><!--@News:Back.Picture--></strong> <!--@EndIf(@News:Back.Picture)-->