@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
Interface ICmsCulture With this object... <!-- unimportant stuff, hidden -->
<h3>The .CurrentCode attribute:</h3>
The current code culture is:
<strong>
@CmsContext.Culture.CurrentCode
</strong>
<h3>The .DefaultCode attribute:</h3>
The default culture for the system is:
<strong>
@if(Text.Has(CmsContext.Culture.DefaultCode)){
@CmsContext.Culture.DefaultCode
} else {
<p>
The system is single language and the response is an empty string.
</p>
}
</strong>
<!-- unimportant stuff, hidden -->