| 1 |
<?php
|
| 2 |
global $base_url;
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 5 |
<html>
|
| 6 |
<head>
|
| 7 |
<title>Disknode - <?= $title ?></title>
|
| 8 |
<style type="text/css">
|
| 9 |
<?php readfile(dirname(__FILE__).'/disknode.style.css'); ?>
|
| 10 |
</style>
|
| 11 |
<base href="<?= $base_url ?>/" />
|
| 12 |
</head>
|
| 13 |
<body>
|
| 14 |
<h1><?= $title ?></h1>
|
| 15 |
<h2><?= basename($file->filename) ?></h2>
|
| 16 |
|
| 17 |
<i>Not implemented</i>
|
| 18 |
|
| 19 |
<div id="controls">
|
| 20 |
<span title="Browse and select files"><?= l("Browse", "disknode/browse", null, "subdir=".dirname($file->filename)) ?></span>
|
| 21 |
</div>
|
| 22 |
</body>
|
| 23 |
</html>
|