summaryrefslogtreecommitdiff
path: root/src/views/pages/index.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/pages/index.html.php')
-rw-r--r--src/views/pages/index.html.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/views/pages/index.html.php b/src/views/pages/index.html.php
new file mode 100644
index 0000000..cf31759
--- /dev/null
+++ b/src/views/pages/index.html.php
@@ -0,0 +1,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();