summaryrefslogtreecommitdiffstats
path: root/modules/main.inc.php
blob: ef83f1c4a60fb5a996e9dfddda29df52c77b1bac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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'));
}