4 <title> <?= $realDir ?> </title>
5 <style type="text/css">
8 font-family: sans-serif;
14 text-decoration: none;
17 display: inline-block;
19 height: <?= THUMB_SIZE ?>px;
21 .image, .foldername, .image_nopreview, .foldername_nopreview {
23 vertical-align: middle;
25 .image, .image_nopreview {
26 width: <?= THUMB_SIZE ?>px;
30 height: <?= THUMB_SIZE ?>px;
32 .foldername, .foldername_nopreview {
46 <?php foreach ($plugins as $p) if (is_file("plugins/$p/style.css")) { ?>
47 <link rel="stylesheet" type="text/css" href="<?= $rootUrl."plugins/$p/style.css" ?>" />
49 <?php plugins_include("head.php") ?>
53 <div id="parentfolder"><a href="<?= $parentLink ?>">
54 <?php if ($parentLink !== '') { ?>
59 <?php plugins_include("before_content.php") ?>
62 <?php foreach($folders as $folder) { $preview = getAlbumPreview($folder["file"]); ?>
64 <?php if ($preview === "") { ?>
65 <div class="square"><div class="image_nopreview"> - </div></div>
66 <div class="square"><div class="foldername_nopreview"> <a href="<?= $folder["link"] ?>"><?= $folder["name"] ?></a> </div></div>
68 <div class="square"><div class="image"> <a href="<?= $folder["link"] ?>"><img src="<?= $rootUrl.$preview ?>" /></a> </div></div>
69 <div class="square"><div class="foldername"> <a href="<?= $folder["link"] ?>"><?= $folder["name"] ?></a> </div></div>
70 <?php if (isset($generating)) { ob_flush(); flush(); } ?>
77 <?php foreach ($imageFiles as $file) { ?>
78 <div class="square"><div class="image"><a href="<?= $file["link"] ?>"><img src="<?= $rootUrl.getPreview($file["file"]) ?>" alt="<?= $file["name"] ?>" /></a></div><?php plugins_include("after_thumb.php") ?></div>
79 <?php if (isset($generating)) { ob_flush(); flush(); } ?>
84 <?php foreach ($otherFiles as $file) { ?>
85 <div class="miscfile"><a href="<?= $file["link"] ?>"><?= $file["name"] ?></a></div>
89 <?php plugins_include("after_content.php") ?>
92 Generated by <a href="http://www.positon.org/bizou/">Bizou</a>