Klarna.BaseURL

Version: - string  

Summary

Returns base URL the checkout.  

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("Klarna.BaseURL")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Klarna.BaseURL"); }

Outputting the template tag

<!--@Klarna.BaseURL-->

Check if string has a value

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