2021-03-31 15:09:10 +02:00
|
|
|
<?php
|
|
|
|
session_start();
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
$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>Explore | Chiro - Canto</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/styles/style.css">
|
|
|
|
</head>
|
2021-04-01 08:57:34 +02:00
|
|
|
<?php
|
|
|
|
include("$root/analytics/matomo.php");
|
|
|
|
?>
|
2021-03-31 15:09:10 +02:00
|
|
|
<body>
|
|
|
|
<?php include("$root/menu.php");?>
|
|
|
|
<?php include("$root/header.php");?>
|
|
|
|
<section>
|
|
|
|
<h3>Explore</h3>
|
|
|
|
<ul>
|
2021-04-08 12:44:50 +02:00
|
|
|
<a href="list">
|
|
|
|
<li>List Uploaded Recording</li>
|
|
|
|
</a>
|
2021-03-31 15:09:10 +02:00
|
|
|
<a href="search">
|
|
|
|
<li>Advanced Search</li>
|
|
|
|
</a>
|
|
|
|
<a href="mysteries">
|
|
|
|
<li>Mystery Recordings</li>
|
|
|
|
</a>
|
|
|
|
<a href="spectrograms">
|
|
|
|
<li>Recording Spectrograms</li>
|
|
|
|
</a>
|
|
|
|
<a href="random">
|
|
|
|
<li>Random Recording</li>
|
|
|
|
</a>
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
<?php include("$root/footer.php");?>
|
|
|
|
</body>
|
|
|
|
<script src="/scripts/script.js"></script>
|
|
|
|
</html>
|