AllPages.PageLink

Version: - string  

Summary

Returns the page link.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("AllPages.PageLink")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("AllPages.PageLink"); }

Outputting the template tag

<!--@AllPages.PageLink-->

Check if string has a value

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