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_BASE?>images/favicon.ico" />
25  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>layout.css" />
26  <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>design.css" />
27
28  <!--[if gte IE 5]>
29  <style type="text/css">
30    /* that IE 5+ conditional comment makes this only visible in IE 5+ */
31    /* IE bugfix for transparent PNGs */
32    //img { behavior: url("<?php echo DOKU_BASE?>/pngbehavior.htc"); }
33  </style>
34  <![endif]-->
35</head>
36
37<body>
38<div class="dokuwiki">
39  <?php html_msgarea()?>
40
41  <h1><?php echo hsc($lang['reference'])?> <code><?php echo hsc(noNS($DEL))?></code></h1>
42
43  <div class="mediaref">
44    <div class="mediaref_head">
45      <p><?php echo hsc($lang['ref_inuse'])?></p>
46    </div>
47
48    <?php tpl_showreferences($mediareferences)?>
49
50	<div class="mediaref_footer">
51	  <hr>
52      <?php tpl_button('backtomedia')?>
53    </div>
54  </div>
55
56</div>
57</body>
58</html>
59
60