summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 00000000..acf62675
--- /dev/null
+++ b/index.php
@@ -0,0 +1,14 @@
+<?php
+
+require_once('inc/session.inc.php');
+require_once('inc/render.inc.php');
+
+Render::setTitle('Wurstgesicht');
+
+Render::openTag('h1', array('class' => 'wurst kacke'));
+Render::closeTag('h1');
+
+Render::parse('helloworld', array('wurst' => 'käse & bier'));
+
+Render::output();
+