Title: Theme variables Content: ## $pages arrays This array cotains all pages published. Each item from the array is a `Page Object` --- ## Array $posts --- ## Site object The object Site have all the information from the database /content/databases/site.php. By default there is an object $Site, whith the next methods. Print the site title
echo $Site->title();
Print the site slogan
echo $Site->slogan();
--- ## Page object By default if the user filter by a particular page there will be an object $Page. To check if the user is filtering by a page you can uses the object $Url and the method `whereAmI()`.
if( $Url->whereAmI()==='page' )
{
	echo 'The page filtered is '.$Page->title();
}
{
	echo 'The user is not watching a particular page';
}
And here there are the methods for the object $Page. Print the page title
echo $Page->title();
Print the page content
echo $Page->content();
Print the page username
echo $Page->username();
Get the date in unix timestamp
$time = $Page->unixstamp();

// Format time
echo date('Y-m-d', $time);
Print the page date, according to locale settings and format settings.
echo $Page->date();
Print the page date with a different format.
$format = 'Y-m-d';

echo $Page->date($format);
Time ago
echo $Page->timeago();
Get the slug url.
$slug = $Page->slug();
Get the page permalink.
$permalink = $Page->permalink();
Get the page status, this method returns TRUE if the page is published, FALSE otherwise.
if( $Page->published() )
{
	echo 'Page published';
}
else
{
	echo 'Page draft';
}