2024-03-14 19:03:53 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="/assets/common.css" />
|
|
|
|
<link rel="stylesheet" href="/assets/root.css" />
|
2024-06-17 05:01:51 +03:00
|
|
|
<title>Splatunes Network Preview</title>
|
2024-03-14 19:03:53 +03:00
|
|
|
<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>';
|
|
|
|
}
|
|
|
|
?>
|
2024-06-17 05:01:51 +03:00
|
|
|
<div class="footer"><a href="https://git.mctaylors.ru/mctaylors/SplatunesNetwork">Splatunes Network</a> Preview, exists because it wants to. ©</div>
|
2024-03-14 19:03:53 +03:00
|
|
|
</body>
|
|
|
|
</html>
|