blob: cf317595dfc4eb0cda4f3d5bafcf06f522fb8c1f (
plain)
1
2
3
4
5
6
7
8
|
<?php global $VARS;
$t = $VARS['template'];
$t->header('Main Page');
$t->tag('h1', array(), "Message Manager");
$t->paragraph("This is the main index page.");
$t->link($t->url('users'), 'List of all users');
$t->footer();
|