1<h1><?php
2	// get logo either out of the template images folder or data/media folder
3	$logoSize = array();
4	$logo = tpl_getMediaFile(array(':logo.svg', ':logo.png', 'images/logo.png'), false, $logoSize);
5
6	// display logo and wiki title in a link to the home page
7	tpl_link(
8		wl(),
9		'<img src="'.$logo.'" '.$logoSize[3].' alt="" /> <span>'.$conf['title'].'</span>',
10		'accesskey="h" title="[H]"'
11	);
12?></h1>
13<?php $translation = plugin_load('helper','translation');
14	if ($translation) echo $translation->showTranslations();
15?><br>