1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3<?php 4/** 5 * DokuWiki Default Template 6 * 7 * This is the template for the media manager popup 8 * 9 * You should leave the doctype at the very top - It should 10 * always be the very first line of a document. 11 * 12 * @link http://dokuwiki.org/templates 13 * @author Andreas Gohr <andi@splitbrain.org> 14 */ 15?> 16<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr" style="background-color: #fff"> 17<head> 18 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 19 <title> 20 <?php echo hsc($lang['mediaselect'])?> 21 [<?php echo strip_tags($conf['title'])?>] 22 </title> 23 <?php tpl_metaheaders()?> 24 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" /> 25</head> 26 27<body> 28<div id="media__manager" class="dokuwiki"> 29 <div id="media__left"> 30 <?php html_msgarea()?> 31 <h1><?php echo hsc($lang['mediaselect'])?></h1> 32 33 <?php /* keep the id! additional elements are inserted via JS here */?> 34 <div id="media__opts"></div> 35 36 <?php tpl_mediaTree() ?> 37 </div> 38 39 <div id="media__right"> 40 <?php tpl_mediaContent() ?> 41 </div> 42</div> 43</body> 44</html> 45