]> git.bochard.net Git - mysite.git/commitdiff
gallery -> photo-album
authorbochard <mail@bochard.net>
Tue, 15 Jul 2025 09:52:00 +0000 (17:52 +0800)
committerbochard <mail@bochard.net>
Tue, 15 Jul 2025 09:52:00 +0000 (17:52 +0800)
gallery/index.php [deleted file]
parts/sidebar.php
photo-album/index.php [new file with mode: 0644]

diff --git a/gallery/index.php b/gallery/index.php
deleted file mode 100644 (file)
index ce4876e..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-  require_once("{$_SERVER['DOCUMENT_ROOT']}/parts/head.php");
-  $pgtitle = "My Photo Gallery";
-  $pgdescription = "photo collection of various things I see in my life.";
-  head($pgtitle, $pgdescription);
-?>
-<body>    
-  <table>
-    <tr>
-      <?php include_once("$parts/sidebar.php");?>
-      
-      <!-- ...and this is for the content -->
-      <td id="body">
-        <?php include_once("$parts/underconstruction.php");?>
-      </td>
-    </tr>
-  </table>
-</body>
-</html>
index ec2e5d68e038f6b45665010f7e17b4a37f6006f2..fd6cdf2a6641367819dad4fb846036e96369ebff 100644 (file)
@@ -10,7 +10,7 @@
     <li><a href="/">homepage</a></li>
     <li><a href="/about-me.php">about me...</a></li>
     <li><a href="/journal">my thoughts</a></li>
-    <li><a href="/gallery">photo gallery</a></li>
+    <li><a href="/photo-album">photo album</a></li>
     <li><a href="/works">stuffs i made</a></li>
     <li><a href="/files">files</a></li>
     <li><a href="mailto:mail@bochard.net">email me!</a></li>
diff --git a/photo-album/index.php b/photo-album/index.php
new file mode 100644 (file)
index 0000000..9fe85e2
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+  require_once("{$_SERVER['DOCUMENT_ROOT']}/parts/head.php");
+  $pgtitle = "My Photo Album";
+  $pgdescription = "collection of snaps taken from my camera of various things I see in my life.";
+  head($pgtitle, $pgdescription);
+?>
+<body>    
+  <table>
+    <tr>
+      <?php include_once("$parts/sidebar.php");?>
+      
+      <!-- ...and this is for the content -->
+      <td id="body">
+        <?php include_once("$parts/underconstruction.php");?>
+      </td>
+    </tr>
+  </table>
+</body>
+</html>