You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
$path = $_SERVER['DOCUMENT_ROOT'];
|
|
$root = ".";
|
|
$dataset = file_get_contents('exiftool.json');
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<title>Granularchive</title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container"></div>
|
|
for
|
|
|
|
<header>
|
|
<h1>Granularchive</h1>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section class="loading">building graph...</section>
|
|
|
|
<?php print("<pre>" . print_r($dataset, true) . "</pre>"); ?>
|
|
|
|
<script type="text/javascript">
|
|
var dataset = <?php echo $dataset; ?>;
|
|
console.log(dataset);
|
|
</script>
|
|
|
|
</main>
|
|
<footer>
|
|
<audio controls src="/small-filesize/output_lower.mp3" autoplay></audio>
|
|
|
|
</footer>
|
|
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
|
|
<script type="text/javascript" src="script.js"> </script>
|
|
</body>
|
|
|
|
</html>
|