<!DOCTYPE html>
<html>
<head>
<title>Home • {$Title}</title>
{%assign|var=$example:'This is an example variable'%}
</head>
<body>
<a href="logout.php">Logout</a>
<br />
User ID: {$_SESSION['UserData']['id']}
<br />
Username: {$_SESSION['UserData']['Username']}
<br />
UserToken / Password: {$_SESSION['UserData']['Password']}
<br/>
<br/>
{$example}
<br/>
{%template|'includeExample.html'%}
</body>
</html>
<?php
echo $lol;
?>
|