template code goes to the bottom
[bizou.git] / index.php
index 2d503c7..788773b 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,31 +1,4 @@
 <?php
-header('Content-Type: text/html; charset=utf-8');
-header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
-?>
-<html>
-<head>
-<style type="text/css">
-img {
-       border: 0;
-       vertical-align: middle;
-}
-
-.square {
-       display: inline-block;
-}
-
-.image {
-       width: 100px;
-       height: 100px;
-       display: table-cell;
-       text-align: center;
-       vertical-align: middle;
-}
-</style>
-</head>
-<body>
-
-<?php
 
 function getPreview($imgFile, $maxSize)
 {
@@ -90,11 +63,7 @@ $realDir = "images$shortPath";
 
 foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..')
 {
-       if ($file == '..')
-       {
-               echo "<div><a href=\"$scriptUrlPath".dirname($shortPath)."/\">..</a></div>\n";
-       }
-       elseif (is_dir("$realDir/$file"))
+       if (is_dir("$realDir/$file"))
        {
                $folders[] = array( "name" => $file, "link" => "$scriptUrlPath$shortPath/$file", "preview" => getAlbumPreview("$realDir/$file") );
        }
@@ -114,9 +83,36 @@ else
        $parentLink = "";
 
 ?>
+<?php
+///// template starts here /////
+header('Content-Type: text/html; charset=utf-8');
+header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
+?>
+<html>
+<head>
+<style type="text/css">
+img {
+       border: 0;
+       vertical-align: middle;
+}
+
+.square {
+       display: inline-block;
+}
+
+.image {
+       width: 100px;
+       height: 100px;
+       display: table-cell;
+       text-align: center;
+       vertical-align: middle;
+}
+</style>
+</head>
+<body>
 
 <?php if ($parentLink !== '') { ?>
-       <div><a href="<?php echo $parentLink ?>">^</a></div>
+       <div id="parentfolder"><a href="<?php echo $parentLink ?>">^</a></div>
 <?php } ?>
 
 <?php foreach($folders as $folder) { ?>