summaryrefslogtreecommitdiffstats
path: root/modules/main.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/main.inc.php')
-rw-r--r--modules/main.inc.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/main.inc.php b/modules/main.inc.php
new file mode 100644
index 00000000..ef83f1c4
--- /dev/null
+++ b/modules/main.inc.php
@@ -0,0 +1,12 @@
+<?php
+
+function render_module()
+{
+ Render::setTitle('Wurstgesicht');
+
+ Render::openTag('h1', array('class' => 'wurst kacke'));
+ Render::closeTag('h1');
+
+ Render::addTemplate('helloworld', array('wurst' => 'käse & bier'));
+}
+