diff options
author | Simon Rettberg | 2013-10-15 19:24:01 +0200 |
---|---|---|
committer | Simon Rettberg | 2013-10-15 19:24:01 +0200 |
commit | 43e406068af8f2ae3d77301926bb5d31f392c961 (patch) | |
tree | a71f2fda66e789a6a1d2a9437bc1e37027e4ee93 /index.php | |
download | slx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.tar.gz slx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.tar.xz slx-admin-43e406068af8f2ae3d77301926bb5d31f392c961.zip |
Initial commit
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 14 |
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(); + |