1<!DOCTYPE html>
2<?php
3/**
4 * DokuWiki Default Template
5 *
6 * This is the template for displaying references to a media file.
7 * It is displayed in the media 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  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
19  <title><?php echo hsc($lang['mediaselect'])?> [<?php echo hsc($conf['title'])?>]</title>
20  <?php tpl_metaheaders();
21  echo tpl_favicon(array('favicon', 'mobile')) ?>
22</head>
23
24<body>
25<div class="dokuwiki">
26  <?php html_msgarea()?>
27
28  <h1><?php echo hsc($lang['reference'])?> <code><?php echo hsc(noNS($DEL))?></code></h1>
29
30  <div class="mediaref">
31    <div class="mediaref_head">
32      <p><?php echo hsc($lang['ref_inuse'])?></p>
33    </div>
34
35    <?php tpl_showreferences($mediareferences)?>
36
37  <div class="mediaref_footer">
38    <hr />
39      <?php tpl_button('backtomedia')?>
40    </div>
41  </div>
42
43</div>
44</body>
45</html>
46
47