Change ol -> ul and add class for previous change

This commit is contained in:
Travis Briggs 2020-05-05 22:19:28 -07:00
parent e7f092ac05
commit 0c463fdeda
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@
<p>this list does not include people who haven't changed their page yet</p> <p>this list does not include people who haven't changed their page yet</p>
<p>if you're not seeing yourself listed here, change your page from the default.</p> <p>if you're not seeing yourself listed here, change your page from the default.</p>
<p><a href="/users/">list all users</a></p> <p><a href="/users/">list all users</a></p>
<ol> <ul class="user-list">
<?php foreach (glob("/home/*") as $user) { <?php foreach (glob("/home/*") as $user) {
$index = "$user/public_html/index.html"; $index = "$user/public_html/index.html";
if (!file_exists($index) || if (!file_exists($index) ||
@ -110,7 +110,7 @@
$user = basename($user); ?> $user = basename($user); ?>
<li><a href="/~<?=$user?>/">~<?=$user?></a></li> <li><a href="/~<?=$user?>/">~<?=$user?></a></li>
<?php } ?> <?php } ?>
</ol> </ul>
</div> </div>