2
0
mirror of https://github.com/tildeclub/site synced 2024-06-14 21:36:37 +00:00
site/users/index.php

35 lines
694 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';
?>
2020-05-06 06:21:48 +00:00
<h1>$ full user list</h1>
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
<div class="grid">
<div class="row">
<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>
<ul class="user-list>
<?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:21:48 +00:00
<?php } ?>
2019-09-21 18:47:51 +00:00
2020-05-06 06:21:48 +00:00
</ul>
</div>
</div>
2019-09-21 18:47:51 +00:00
<?php
include __DIR__.'/../footer.php';