site/users/index.php

37 lines
717 B
PHP
Raw Normal View History

2019-09-21 18:47:51 +00:00
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$title = 'tilde.club users';
include __DIR__.'/../header.php';
2021-12-11 11:45:46 +00:00
2019-09-21 18:47:51 +00:00
?>
2020-05-07 05:40:41 +00:00
<h1 id="fancyboi">full user list</h1>
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
<div class="grid">
2020-05-06 06:53:44 +00:00
2020-05-06 06:21:48 +00:00
<div class="row">
2020-05-06 06:53:44 +00:00
<div class="col">
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
<p>here's a full list of users (including those who haven't updated their page from the default)</p>
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
<p>see <a href="http://tilde.club/tilde.24h.php">users who have updated their page in the last 24 hours</a></p>
2020-05-06 06:53:44 +00:00
<br>
<ul class="user-list">
2020-05-06 06:21:48 +00:00
2020-05-06 06:53:44 +00:00
<?php foreach (glob("/home/*") as $user) {
2019-09-21 18:47:51 +00:00
$user = basename($user); ?>
<li><a href="/~<?=$user?>/">~<?=$user?></a></li>
2020-05-06 06:53:44 +00:00
<?php } ?>
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
</ul>
2020-05-06 06:53:44 +00:00
</div>
2020-05-06 06:21:48 +00:00
</div>
</div>
2019-09-21 18:47:51 +00:00
<?php
include __DIR__.'/../footer.php';