]> git.bochard.net Git - mysite.git/commitdiff
bagong folders: books at recipes
authorbochard <mail@bochard.net>
Tue, 29 Jul 2025 11:58:12 +0000 (19:58 +0800)
committerbochard <mail@bochard.net>
Tue, 29 Jul 2025 11:58:12 +0000 (19:58 +0800)
books/index.php [new file with mode: 0644]
parts/sidebar.php
recipes/index.php [new file with mode: 0644]

diff --git a/books/index.php b/books/index.php
new file mode 100644 (file)
index 0000000..53bbb28
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+  require_once("{$_SERVER['DOCUMENT_ROOT']}/parts/head.php");
+  $pgtitle = "Ang aking bookshelf";
+  $pgdescription = "Ang koleksiyon ko ng mga libro";
+  head($pgtitle, $pgdescription);
+?>
+<body>    
+  <table id="content">
+    <tr>
+      <?php include_once("$parts/sidebar.php");?>
+      
+      <td id="body">
+        <?php include_once("$parts/underconstruction.php");?>
+      </td>
+    </tr>
+    
+    <?php include_once("$parts/footer.php");?>
+  </table>
+</body>
+</html>
index cfa3491c0e5b7bb1848751301ce88e8e42d5266f..ca78480aa9299c93dd57ecc44a8141fef56d31eb 100644 (file)
@@ -10,6 +10,8 @@
     <li><a href="/about-me.php" title="general na impormasyon tungkol sa akin">ako...</a></li>
     <li><a href="/journal" title="mga tala sa bawat araw ko">ang aking talaarawan</a></li>
     <li><a href="/photo-album" title="koleksiyon ng mga kuhang larawan sa kamera">photo album</a></li>
+    <li><a href="/recipes" title="mga lutong pagkain">mga recipe</a></li>
+    <li><a href="/books" title="mga koleksiyon ko ng libro">bookshelf</a></li>
     <li><a href="/guestbook.php" title="pakisagutan po bago umalis, pleasssee">guestbook</a></li>
     <li><a href="/works" title="mga project na gawa ko, yung iba may pakinabang naman, yung iba...medyo..siguro">projects ko</a></li>
     <li><a href="/files" title="random files sa computer ko">files</a></li>
diff --git a/recipes/index.php b/recipes/index.php
new file mode 100644 (file)
index 0000000..218da2c
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+  require_once("{$_SERVER['DOCUMENT_ROOT']}/parts/head.php");
+  $pgtitle = "Mga recipe";
+  $pgdescription = "Lutong ulam, panghimagas, atbp.";
+  head($pgtitle, $pgdescription);
+?>
+<body>    
+  <table id="content">
+    <tr>
+      <?php include_once("$parts/sidebar.php");?>
+      
+      <td id="body">
+        <?php include_once("$parts/underconstruction.php");?>
+      </td>
+    </tr>
+    
+    <?php include_once("$parts/footer.php");?>
+  </table>
+</body>
+</html>