<?php
- require_once("{$_SERVER['DOCUMENT_ROOT']}/parts/head.php");
- $pgtitle = "Bookshelf";
- $pgdescription = "my collection of books.";
- head($pgtitle, $pgdescription);
+ require_once("{$_SERVER['DOCUMENT_ROOT']}/part/head.php");
+ $pgtitle = "books";
+ $pgdescription = "";
+ $pgcss = ['book.css'];
+ $pgjs = [];
+ head($pgtitle, $pgdescription, $pgcss, $pgjs);
?>
-<body>
- <table id="tablewrapper" cellspacing="10">
+<body>
+ <table id="theholderofthings">
<tbody>
<tr>
- <td id="content">
- <table>
- <tbody>
- <tr>
- <?php include_once("$parts/sidebar.php");?>
-
- <td id="body">
- <?php include_once("$parts/underconstruction.php");?>
- </td>
- </tr>
-
- <?php include_once("$parts/footer.php");?>
- </tbody>
- </table>
- </td>
- <td id="rightbox">
- <?php include_once("$parts/rightbox.php");?>
+ <td>
+ <?php include_once("$part/underconstruction.php");?>
</td>
</tr>
</tbody>
- </table>
+ </table>
+
+ <?php include_once("$part/foot.php");?>
</body>
</html>
+<?php
+ require_once("{$_SERVER['DOCUMENT_ROOT']}/part/head.php");
+ $pgtitle = "tutorials";
+ $pgdescription = "";
+ $pgcss = ['how-to.css'];
+ $pgjs = [];
+ head($pgtitle, $pgdescription, $pgcss, $pgjs);
+?>
+<body>
+ <table id="theholderofthings">
+ <tbody>
+ <tr>
+ <td>
+ <?php include_once("$part/underconstruction.php");?>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <?php include_once("$part/foot.php");?>
+</body>
+</html>
+<?php
+ require_once("{$_SERVER['DOCUMENT_ROOT']}/part/head.php");
+ $pgtitle = "my photo album";
+ $pgdescription = "";
+ $pgcss = ['photo-album.css'];
+ $pgjs = [];
+ head($pgtitle, $pgdescription, $pgcss, $pgjs);
+?>
+<body>
+ <table id="theholderofthings">
+ <tbody>
+ <tr>
+ <td>
+ <?php include_once("$part/underconstruction.php");?>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <?php include_once("$part/foot.php");?>
+</body>
+</html>
--- /dev/null
+body {
+ background: url('/image/background/paper.jpg');
+}
--- /dev/null
+body {
+ background: url('/image/background/bkgr2.jpg');
+ color: white;
+}
--- /dev/null
+body {
+ background: url('/image/background/Ocean.jpg');
+ background-size: cover;
+}