-<?php
- require_once("{$_SERVER['DOCUMENT_ROOT']}/part/head.php");
- $pgtitle = "my thoughts";
- $pgdescription = "";
- $pgcss = [];
- $pgjs = [];
- head($pgtitle, $pgdescription, $pgcss, $pgjs);
-?>
-<body>
- <center>
- <table width="490">
- <tr>
- <td>
- <h1>bochard's diary</h1>
- <p>Some thoughts from my mind that I want to write. This section is not purely for sentimental, and emotional stuffs. It is kind of a mix of a journal, a diary, and a weblog. Feel free to read them. Please don't mind the grammatical mistakes, I am not a native English speaker but I'll do my best to improve my vocabulary and writing so I could express more of my thoughts.</p>
-
- <!--
- <ul>
- <?php
- $path = $_SERVER['DOCUMENT_ROOT'] . '/diary/';
- $files = glob($path . '*.php');
-
- $entries = [];
-
- foreach ($files as $path) {
- $filename = basename($path);
-
- if (!preg_match('/^\d{8}\.php$/', $filename)) {
- continue;
- }
-
- $date = substr($filename, 0, 8);
- $entries[$date] = $filename;
- }
-
- krsort($entries);
-
- foreach ($entries as $date => $filename) {
- $url = "/diary/$filename";
- $entryName = date("F j, Y", strtotime($date));
- echo "<li><a href=\"$url\">$entryName</a></li>\n";
- }
- ?>
- </ul>
- -->
-
- <ul>
- <li>[2025, Aug. 09] - <a href="./20250809.php">Our kitten died</a></li>
- <li>[2025, Aug. 05] - <a href="./20250805.php">University orientation</a></li>
- <li>[2025, Aug. 03] - <a href="./20250803.php">New haircut</a></li>
- <li>[2025, Jul. 14] - <a href="./20250714.php">The rain.</a></li>
- <li>[2025, Jul. 12] - <a href="./20250712.php">A dream.</a></li>
- </ul>
-
- <center><a href="/"><img src="/image/navigation/backhomepage.gif"></a></center>
- </td>
- </tr>
- </table>
- </center>
-</body>
-</html>