summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 18:29:26 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 18:29:26 +0200
commite26c630da098519eea24cdba8a18b1df81ea4616 (patch)
treeffea1a8c61281f476a4d0207458d92c835c4e2b6 /index.php
parentCreate LICENSE (diff)
downloadgitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.gz
gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.bz2
gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.xz
gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.tar.zst
gitjoe-www-e26c630da098519eea24cdba8a18b1df81ea4616.zip
Update
Diffstat (limited to 'index.php')
-rw-r--r--index.php40
1 files changed, 39 insertions, 1 deletions
diff --git a/index.php b/index.php
index b129b85..0b3d0df 100644
--- a/index.php
+++ b/index.php
@@ -1 +1,39 @@
-<h1>Yo</h1>
+<!-- ----------------------------------------------------------------------- -->
+<!-- -->
+<!-- File : index.php /_________/ -->
+<!-- Authors : Joe | -->
+<!-- Date : 06/2020 | -->
+<!-- Info : The home page | -->
+<!-- / | -->
+<!-- \ / -->
+<!-- \_____/ -->
+<!-- -->
+<!-- ----------------------------------------------------------------------- -->
+
+<?php
+$prefix = "./";
+$curr_dir = basename(getcwd());
+if ($curr_dir != "git-jozan" && $curr_dir != "gitjoe") {
+ $prefix = "../";
+}
+?>
+<?php include $prefix."inc/classic-contents.inc.php"; ?>
+<?php jo_head("Home"); ?>
+<?php jo_sidebar(); ?>
+<div class="body-contents">
+ <h2>About this site</h2>
+ <p>
+ Welcome to my personnal blog. Here you can find my tips and articles
+ on various tech and programming subjects.
+ <br><br>
+ The site is still in active developpement, stay tuned.
+ </p>
+ <h2>About me</h2>
+ <p>
+ I am a student for
+ <a href="https://www.42lyon.fr/" target="_blank">42Lyon</a>
+ IT school based in Lyon, France.
+ I work on various personnal project beside that.
+ </p>
+</div>
+<?php jo_footer(); ?>