CopyRightNotice

Version: - string  

Summary

Returns the copyright information.

Settings

The value comes from the Copyright field in solution settings.

Remarks

This tag can be used on master templates.
(File Manager tab > Templates folder > Master folder)
The value should be assigned to the copyright meta tag.

Examples

Outputting the template tag

@GetString("CopyRightNotice")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("CopyRightNotice"); }

Outputting the template tag

<!--@CopyRightNotice-->

Check if string has a value

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