site/users/index.php

25 lines
653 B
PHP
Raw Normal View History

2019-09-21 18:47:51 +00:00
<?php
$title = 'tilde.club users';
include __DIR__.'/../header.php';
?>
2025-02-05 11:02:26 +00:00
<h1 id="fancyboi">Tilde.club user list</h1>
2020-05-06 06:21:48 +00:00
<div class="grid">
<div class="row">
2020-05-06 06:53:44 +00:00
<div class="col">
2025-02-05 11:02:26 +00:00
<p>Here is a full list of users (including those who haven't updated their page from the default)</p>
<p>Also see users who have updated their page in the <a href="http://tilde.club/tilde.24h.php">last 24 hours</a></p>
<br>
<div class="user-list">
<?php
foreach (glob("/home/*") as $user)
{
$user = basename($user);
2025-02-12 03:33:12 +00:00
echo '<a href="/~'.$user.'/">'.$user.'</a>';
2025-02-05 11:02:26 +00:00
}
?>
</div>
2020-05-06 06:53:44 +00:00
</div>
2020-05-06 06:21:48 +00:00
</div>
</div>
2025-02-05 11:02:26 +00:00
<?php include __DIR__.'/../footer.php';