SplatunesNetwork/root.php
mctaylors d11b1d633f
Initial Preview release
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-03-14 19:03:53 +03:00

20 lines
665 B
PHP

<!DOCTYPE html>
<html lang="">
<head>
<link rel="stylesheet" href="/assets/common.css" />
<link rel="stylesheet" href="/assets/root.css" />
<title>SplatunesNetwork Preview</title>
<meta name="viewport" content="initial-scale=0.75 user-scalable=no" />
</head>
<body>
<?php
foreach(glob('[!assets]*', GLOB_ONLYDIR) as $dir) {
echo '<a class="card" href="'. $dir .'">
<img src="/'. $dir .'/artwork.jpg" alt="" />
<div class="content">'. $dir .'</div>
</a>';
}
?>
<div class="footer"><a href="https://git.mctaylors.ru/mctaylors/SplatunesNetwork">SplatunesNetwork</a> Preview, exists because it wants to. ©</div>
</body>
</html>