+++ /dev/null
-<?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>
<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>
--- /dev/null
+<?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>