Server Tags

Model Variables

The framework keeps track of specific model variables which are accessible within your templates:

  • user - information about the current user
  • page - information about the current page
  • selected - information about the currently selected content item
  • session - information about the current user application session
  • history - information about the navigation history
  • request - information about the request

Here is an example template that displays the user's click path history:

{<template10}
   {#history}
   <div>
      <span>
         {url}
      </span>
   </div>
   {/history}
{/template10}

Here is an example template that shows user information:

{<template11}
   {#user.properties}
   <div>
      <span>
         {value}
      </span>
   </div>
   {/user.properties}
{<template11}