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 selection 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://wiki.splitbrain.org/wiki:tpl: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"> 17<head> 18 <title><?php echo hsc($lang['mediaselect'])?> [<?php echo hsc($conf['title'])?>]</title> 19 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 20 21 <?php tpl_metaheaders()?> 22 23 <link rel="shortcut icon" href="<?php echo DOKU_BASE?>lib/images/favicon.ico" /> 24 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>layout.css" /> 25 <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>design.css" /> 26 27 <!--[if gte IE 5]> 28 <style type="text/css"> 29 /* that IE 5+ conditional comment makes this only visible in IE 5+ */ 30 /* IE bugfix for transparent PNGs */ 31 //DISABLED img { behavior: url("<?php echo DOKU_BASE?>lib/scripts/pngbehavior.htc"); } 32 </style> 33 <![endif]--> 34</head> 35 36<body> 37<div class="dokuwiki"> 38 <?php html_msgarea()?> 39 40 <h1><?php echo hsc($lang['mediaselect'])?> <code><?php echo hsc($NS)?></code></h1> 41 42 <div class="mediaselect"> 43 44 <div class="mediaselect-left"> 45 <b><a href="<?php echo DOKU_BASE?>lib/exe/media.php?ns="><?php echo hsc($lang['namespaces'])?></a></b> 46 47 <?php tpl_medianamespaces()?> 48 </div> 49 50 <div class="mediaselect-right"> 51 <?php tpl_mediafilelist()?> 52 53 <div class="uploadform"> 54 <?php tpl_mediauploadform()?> 55 </div> 56 </div> 57 58 </div> 59 60</div> 61</body> 62</html> 63 64