Template directive: guest

The @guest: directive is a wrapper directive that is used to add a particular section of a web page only when the user session is not active. In the event that the user session is active, the @guest: section will never be added to the web page.
guest: guest;
Example: A Sample Guest Section
  @guest:
    Welcome //displays only in inactive session
  @guest;
                
From the above, once user section becomes active, the code block will not be added to the web page.