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 displaying references to a media file. 8 * It is displayed in the media popup. 9 * 10 * You should leave the doctype at the very top - It should 11 * always be the very first line of a document. 12 * 13 * @link http://wiki.splitbrain.org/wiki:tpl:templates 14 * @author Andreas Gohr <andi@splitbrain.org> 15 */ 16?> 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 <title><?php echo hsc($lang['mediaselect'])?> [<?php echo hsc($conf['title'])?>]</title> 20 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 21 22 <?php tpl_metaheaders()?> 23 24 <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" /> 25 26</head> 27 28<body> 29<div class="dokuwiki"> 30 <?php html_msgarea()?> 31 32 <h1><?php echo hsc($lang['reference'])?> <code><?php echo hsc(noNS($DEL))?></code></h1> 33 34 <div class="mediaref"> 35 <div class="mediaref_head"> 36 <p><?php echo hsc($lang['ref_inuse'])?></p> 37 </div> 38 39 <?php tpl_showreferences($mediareferences)?> 40 41 <div class="mediaref_footer"> 42 <hr> 43 <?php tpl_button('backtomedia')?> 44 </div> 45 </div> 46 47</div> 48</body> 49</html> 50 51