Files
site/users/index.php

25 lines
653 B
PHP
Raw Normal View History

2019-09-21 14:47:51 -04:00
<?php
$title = 'tilde.club users';
include __DIR__.'/../header.php';
?>
2025-02-05 12:02:26 +01:00
<h1 id="fancyboi">Tilde.club user list</h1>
2020-05-06 00:21:48 -06:00
<div class="grid">
<div class="row">
2020-05-06 00:53:44 -06:00
<div class="col">
2025-02-05 12:02:26 +01: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-11 20:33:12 -07:00
echo '<a href="/~'.$user.'/">'.$user.'</a>';
2025-02-05 12:02:26 +01:00
}
?>
</div>
2020-05-06 00:53:44 -06:00
</div>
2020-05-06 00:21:48 -06:00
</div>
</div>
2025-02-05 12:02:26 +01:00
<?php include __DIR__.'/../footer.php';