aboutsummaryrefslogtreecommitdiffstats
path: root/projects/index.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--projects/index.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/projects/index.php b/projects/index.php
new file mode 100644
index 0000000..e897442
--- /dev/null
+++ b/projects/index.php
@@ -0,0 +1,43 @@
+<!-- ----------------------------------------------------------------------- -->
+<!-- -->
+<!-- File : index.php /_________/ -->
+<!-- Authors : Joe | -->
+<!-- Date : 06/2020 | -->
+<!-- Info : The personnal projects welcome page | -->
+<!-- / | -->
+<!-- \ / -->
+<!-- \_____/ -->
+<!-- -->
+<!-- ----------------------------------------------------------------------- -->
+
+<?php
+$prefix = "./";
+$curr_dir = basename(getcwd());
+if ($curr_dir != "jozan" && $curr_dir != "jozanleclerc.xyz") {
+ $prefix = "../";
+}
+?>
+<?php include $prefix."inc/classic-contents.inc.php"; ?>
+<?php jo_head("Projects"); ?>
+<?php jo_sidebar(); ?>
+<div class="body-contents">
+ <h1>My personnal projects</h1>
+ <p>
+ These are the personnal projects I have worked on or that are still being developped:
+ </p>
+ <ul>
+ <li>
+ <a href="<?php echo $prefix; ?>projects/lowbat.php">lowbat</a> -
+ a lightweight low battery notifier for Linux and BSD
+ </li>
+ <li>
+ <a href="">Dergods' Realm II</a> -
+ a raycasting RPG game
+ </li>
+ <li>
+ <a href="">arch-installer</a> -
+ very basic intallation script for Arch Linux
+ </li>
+ </ul>
+</div>
+<?php jo_footer(); ?>