diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-17 16:50:09 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-17 16:50:09 +0200 |
commit | fd0db9f4221a6ea95595431a3b697edd1ca9f2a5 (patch) | |
tree | f1a0edfaf90e483bbe434ec873f08b1b51748199 /license.php | |
parent | update again (diff) | |
download | gitjoe-www-fd0db9f4221a6ea95595431a3b697edd1ca9f2a5.tar.gz gitjoe-www-fd0db9f4221a6ea95595431a3b697edd1ca9f2a5.tar.bz2 gitjoe-www-fd0db9f4221a6ea95595431a3b697edd1ca9f2a5.tar.xz gitjoe-www-fd0db9f4221a6ea95595431a3b697edd1ca9f2a5.tar.zst gitjoe-www-fd0db9f4221a6ea95595431a3b697edd1ca9f2a5.zip |
No more php
Diffstat (limited to 'license.php')
-rw-r--r-- | license.php | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/license.php b/license.php deleted file mode 100644 index 01f2819..0000000 --- a/license.php +++ /dev/null @@ -1,39 +0,0 @@ -<!-- ----------------------------------------------------------------------- --> -<!-- --> -<!-- File : license.php /_________/ --> -<!-- Authors : Joe | --> -<!-- Date : 06/2020 | --> -<!-- Info : The LICENSE display 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("LICENSE"); ?> -<?php jo_sidebar(); ?> -<div class="body-contents"> - <h1>BSD 3-Clause</h1> - <p> - This site is copyrighted under the BSD 3-Clause License. - You can find the terms of the license bellow: - </p> - <pre> -<?php -$license = file_get_contents('LICENSE'); -echo "$license"; -?> - </pre> - <p> - You can also <a href="LICENSE">download</a> the license file. - </p> -</div> -<?php jo_footer(); ?> |