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