28 lines
649 B
PHP
28 lines
649 B
PHP
<?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");
|
|
?>
|
|
<body>
|
|
<?php
|
|
include("$root/menu.php");
|
|
include("$root/header.php");
|
|
?>
|
|
<section>
|
|
<h2>Documentation API v1</h2>
|
|
</section>
|
|
<?php
|
|
include("$root/footer.php");
|
|
?>
|
|
</body>
|
|
</html>
|