Server Tags
Model Variables
user
- information about the current userpage
- information about the current pageselected
- information about the currently selected content itemsession
- information about the current user application sessionhistory
- information about the navigation historyrequest
- 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}