blob: ad6855920b3e32e0e460bc95cc863071b86b8e35 (
plain)
1
2
3
4
5
6
7
|
<?php global $mm;
$t = $mm->template();
$mm->header("Main Page");
$t->paragraph("This is the main index page.");
$t->link($mm->baseUrl().'users', 'List of all users');
$mm->footer();
|