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 *
6 * This is the linkpage manager popup
7 *
8 * You should leave the doctype at the very top - It should
9 * always be the very first line of a document.
10 *
11 * @link   http://wiki.splitbrain.org/wiki:tpl:templates
12 * @author Andreas Gohr <andi@splitbrain.org>
13 * @author Otto Vainio <plugins@valjakko.net>
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>
20    <?php echo hsc($thislang['fileselect'])?>
21    [<?php echo strip_tags($conf['title'])?>]
22  </title>
23  <?php tpl_metaheaders()?>
24  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
25</head>
26
27<body>
28<div id="media__manager" class="dokuwiki">
29    <div id="media__left">
30        <?php html_msgarea()?>
31        <h1><?php echo hsc($thislang['fileselect'])?></h1>
32
33        <?php /* keep the id! additional elements are inserted via JS here */?>
34        <div id="media__opts"></div>
35
36        <?php linkpage_mediaTree() ?>
37    </div>
38
39    <div id="media__right">
40        <?php linkpage_fileContent(); ?>
41    </div>
42</div>
43</body>
44</html>
45