ViewHelper Documentation
v:condition.context.isFrontend
    Condition: Is context Frontend?
A condition ViewHelper which renders the then child if
current context being rendered is FE.
Examples
<!-- simple usage, content becomes then-child -->
<v:condition.context.isFrontend>
    Hooray for BE contexts!
</v:condition.context.isFrontend>
<!-- extended use combined with f:then and f:else -->
<v:condition.context.isFrontend>
    <f:then>
       Hooray for BE contexts!
    </f:then>
    <f:else>
       Maybe BE, maybe CLI.
    </f:else>
</v:condition.context.isFrontend>
Arguments
then anySimpleType
Value to be returned if the condition if met.
else anySimpleType
Value to be returned if the condition if not met.