CompanyName

Version: - string  

Summary

Returns Company name of the shop.. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("CompanyName")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@CompanyName-->

Check if string has a value

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