summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorSimon Rettberg2013-10-15 19:24:01 +0200
committerSimon Rettberg2013-10-15 19:24:01 +0200
commit43e406068af8f2ae3d77301926bb5d31f392c961 (patch)
treea71f2fda66e789a6a1d2a9437bc1e37027e4ee93 /index.php
downloadslx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.tar.gz
slx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.tar.xz
slx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.zip
Initial commit
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();
+