diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-27 23:03:47 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-27 23:03:47 +0100 |
commit | 3eeeb3630680050c504bf0a825657851ce688456 (patch) | |
tree | 073c974262c490500ec5f317bc17bb7c07da8673 /lisp/index.php | |
parent | Added GitJoe links (diff) | |
download | joe-www-3eeeb3630680050c504bf0a825657851ce688456.tar.gz joe-www-3eeeb3630680050c504bf0a825657851ce688456.tar.bz2 joe-www-3eeeb3630680050c504bf0a825657851ce688456.tar.xz joe-www-3eeeb3630680050c504bf0a825657851ce688456.tar.zst joe-www-3eeeb3630680050c504bf0a825657851ce688456.zip |
Update
Diffstat (limited to 'lisp/index.php')
-rw-r--r-- | lisp/index.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lisp/index.php b/lisp/index.php new file mode 100644 index 0000000..3c8c35d --- /dev/null +++ b/lisp/index.php @@ -0,0 +1,25 @@ +<!-- ----------------------------------------------------------------------- --> +<!-- --> +<!-- File : index.php /_________/ --> +<!-- Authors : Joe | --> +<!-- Date : 06/2020 | --> +<!-- Info : The C 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("C"); ?> +<?php jo_sidebar(); ?> +<div class="body-contents"> +</div> +<?php jo_footer(); ?> |