aboutsummaryrefslogtreecommitdiffstats
path: root/license.php
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2022-04-17 02:52:50 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2022-04-17 02:52:50 +0200
commitcb51ae59b900234844be615537cf5a6b398f494e (patch)
tree89e350a7f683e1685bcc37b746ce3366bf264106 /license.php
parentNew file (diff)
downloadjoe-www-cb51ae59b900234844be615537cf5a6b398f494e.tar.gz
joe-www-cb51ae59b900234844be615537cf5a6b398f494e.tar.bz2
joe-www-cb51ae59b900234844be615537cf5a6b398f494e.tar.xz
joe-www-cb51ae59b900234844be615537cf5a6b398f494e.tar.zst
joe-www-cb51ae59b900234844be615537cf5a6b398f494e.zip
Removing php
Diffstat (limited to '')
-rw-r--r--license.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/license.php b/license.php
deleted file mode 100644
index 01297ba..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 != "jozan" && $curr_dir != "jozanleclerc.xyz") {
- $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(); ?>