33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL);
|
|
session_start();
|
|
$root = realpath($_SERVER["DOCUMENT_ROOT"]);
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About | Chiro - Canto</title>
|
|
<link rel="stylesheet" type="text/css" href="/styles/style.css">
|
|
</head>
|
|
<body>
|
|
<?php include("$root/menu.php");?>
|
|
<?php include("$root/header.php");?>
|
|
<section>
|
|
<h2>About</h2>
|
|
<p>Chiro-Canto is an online bat sound sharing set of tools, inspired by <a href="https://xeno-canto.org">Xeno-Canto</a>.</p>
|
|
<h3>Author</h3>
|
|
<p>This website is developped with ♥ by Samuel ORTION, a juvenile <em>Geekus biologicus</em>.</p>
|
|
<h3>Source code</h3>
|
|
<p>This project is available under the GNU Affero GPL v3 license at <a href="https://forge.ortion.xyz/UncleSamulus/chiro-canto">https://forge.ortion.xyz/UncleSamulus/chiro-canto</a>.</p>
|
|
</section>
|
|
<?php include("$root/footer.php");?>
|
|
</body>
|
|
<script src="/scripts/script.js"></script>
|
|
</html>
|