+++ /dev/null
-<?php
-function displayDirectory($dir, $level = 0) {
- // Open the directory
- if ($handle = opendir($dir)) {
- // Loop through the directory contents
- while (false !== ($entry = readdir($handle))) {
- // Skip the current and parent directory entries
- if ($entry != "." && $entry != "..") {
- // Indent based on the level of depth
- echo str_repeat(" ", $level * 4); // 4 spaces for each level
- echo "<li>$entry</li>";
-
- // If the entry is a directory, recursively call this function
- if (is_dir($dir . '/' . $entry)) {
- echo "<ul>";
- displayDirectory($dir . '/' . $entry, $level + 1);
- echo "</ul>";
- }
- }
- }
- closedir($handle);
- }
-}
-
-// Start displaying from the current directory
-echo "<h1>Filesystem Structure</h1>";
-echo "<ul>";
-displayDirectory(__DIR__); // Use __DIR__ to start from the current directory
-echo "</ul>";
-?>
<p># of visitors: </p><script type="text/javascript" src="https://counter.websiteout.com/js/14/7/0/1"></script>
</div>
<div style="text-align: right">
- <a href="http://www.anybrowser.org/campaign/"><img src="./images/gifs/badges/anybrowser.gif" alt="Viewable With Any Browser" /></a>
+ <a href="http://www.anybrowser.org/campaign/"><img src="/images/gifs/badges/anybrowser.gif" alt="Viewable With Any Browser" /></a>
</div>
</footer>
<script src="/scripts/play_audio.js"></script>
<a href="/info.php">
<img src="/images/navigation/info.png">
</a>
+ <a href="/projects/">
+ <img src="/images/navigation/projects.png">
+ </a>
<a href="/links.php">
<img src="/images/navigation/links.png">
</a>
<html lang="en">\r
<head>\r
<meta charset="UTF-8">\r
- <meta name="viewport" content="width=device-width, initial-scale=1.0">\r
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">\r
<meta name="robots" content="index, follow">\r
<link rel="icon" type="image/ico" href="/images/">\r
\r
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="useful links.">
+ <meta name="description" content="some personal information about me :)">
<meta name="robots" content="index, follow">
- <title>useful resources</title>
+ <title>more about me!</title>
<link rel="icon" type="image/ico" href="/images/">
<link rel="stylesheet" href="/styles/root.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="useful links.">
<meta name="robots" content="index, follow">
- <title>useful resources</title>
+ <title>some useful resources</title>
<link rel="icon" type="image/ico" href="/images/">
<link rel="stylesheet" href="/styles/root.css">
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="description" content="my coding projects.">
+ <meta name="robots" content="index, follow">
+ <title>bochard's projects list</title>
+ <link rel="icon" type="image/ico" href="/images/">
+
+ <link rel="stylesheet" href="/styles/root.css">
+</head>
+<body>
+ <?php include '../includes/header.php';?>
+
+ <main>
+ <img src="/images/gifs/titles/projectspageburning.gif" class="page-title">
+ <?php include './includes/nav.php';?>
+ <section style="text-align: center;">
+ <h1>My projects' list</h1>
+ <p>below are some of the coding projects I made, some of them are left unfinished.</p>
+ </section>
+ <section>
+ <ul>
+ <li>
+ <a href="./palindrome-checker">palindrome checker</a>
+ <p>this checks if a word is the same even when reversed, regardless of any punctuations.</p>
+ </li>
+ <li>
+ <a href="./roman-numeral-converter">roman numeral converter</a>
+ <p>converts integers to a roman type. for instance, "28" becomes "XXVIII".</p>
+ </li>
+ <li>
+ <a href="./temperature-converter">temperature converter</a>
+ <p>this one is actually inspired from a physics class in my 12th grade. our topic that time is about gas laws.</p>
+ </li>
+ <li>
+ <a href="./simple-cash-register">temperature converter</a>
+ <p>you know what's a cash register, right? riGhHT?! RIGHTTT!!?</p>
+ </li>
+ <li>
+ <a href="./drum-ka-dum">drum ka dum!</a>
+ <p>not that much, just a basic drum that uses a keyboard.</p>
+ </li>
+ </ul>
+ </section>
+ </main>
+
+ <?php include '../includes/footer.php';?>
+</body>
+</html>
\ No newline at end of file
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="my website's sitemap">
<meta name="robots" content="index, follow">
- <title>sitemap</title>
+ <title>bochard's net sitemap</title>
<link rel="icon" type="image/ico" href="/images/">
<link rel="stylesheet" href="/styles/root.css">