chiro-canto/public/api/v1/doc/index.php

29 lines
689 B
PHP
Executable File

<?php
$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>API v1 Documentation | Chiro - Canto</title>
<link rel="stylesheet" href="/styles/style.css">
</head>
<?php
include("$root/analytics/matomo.php");
include("$root/analytics/owa.php");
?>
<body>
<?php
include("$root/menu.php");
include("$root/header.php");
?>
<section>
<h2>Documentation API v1</h2>
</section>
<?php
include("$root/footer.php");
?>
</body>
</html>