Merge pull request #21 from tildeclub/layoutchange

Layoutchange
This commit is contained in:
deepend-tildeclub 2020-05-05 23:39:37 -06:00 committed by GitHub
commit c8179d140c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 73 additions and 55 deletions

View File

@ -41,23 +41,31 @@
<li>most of the info from previous wiki iterations are now consolidated on our new <a href="/wiki/">wiki</a></li> <li>most of the info from previous wiki iterations are now consolidated on our new <a href="/wiki/">wiki</a></li>
<li>we have a new donation page set up on <a href="https://liberapay.com/tilde.club">liberapay</a></li> <li>we have a new donation page set up on <a href="https://liberapay.com/tilde.club">liberapay</a></li>
</ul> </ul>
</div>
<div class="col">
<p>
tilde.club is not a social network it is one tiny totally
standard unix computer that people respectfully use together
in their shared quest to build awesome web pages
</p>
<p>
If you would like a list of <a href="http://tilde.club/tilde.24h.php">
RECENTLY CHANGED PAGES</a> you can see that too
</p>
<hr> <hr>
<h2>tilde.club gold star supporters</h2> <h2>tilde.club gold star supporters</h2>
<p>Tilde.Club is supported by a global community of
<p>Tilde.Club is supported by a global community of good people. We good people. We don't rank people by the amount
don't rank people by the amount they give, only by the fact that they they give, only by the fact that they gave.
gave. Here's who has donated! When you're on the server, THANK Here's who has donated! When you're on the
THEM.</p> server, THANK THEM.</p>
<ul> <ul>
<li>4/21/2020 | <a href="/~cano">~cano</a></li> <li>4/21/2020 | <a href="/~cano">~cano</a></li>
<li>11/9/2019 | <a href="/~sneak">~sneak</a></li> <li>11/9/2019 | <a href="/~sneak">~sneak</a></li> <li>10/5/2014 | <a href="/~beau">~beau</a></li> <li>10/5/2014 | <a href="/~skk">~skk</a></li> <li>10/5/2014 | <a href="/~joeld">~joeld</a></li> <li>10/5/2014 | <a href="/~john">~john</a></li> <li>10/5/2014 | <a href="/~brendn">~brendn</a></li>
<li>10/5/2014 | <a href="/~beau">~beau</a></li>
<li>10/5/2014 | <a href="/~skk">~skk</a></li>
<li>10/5/2014 | <a href="/~joeld">~joeld</a></li>
<li>10/5/2014 | <a href="/~john">~john</a></li>
<li>10/5/2014 | <a href="/~brendn">~brendn</a></li>
<li>10/5/2014 | <a href="/~droob">~droob</a></li> <li>10/5/2014 | <a href="/~droob">~droob</a></li>
<li>10/5/2014 | <a href="/~delfuego">~delfuego</a></li> <li>10/5/2014 | <a href="/~delfuego">~delfuego</a></li>
<li>10/5/2014 | <a href="/~jonathan">~jonathan</a></li> <li>10/5/2014 | <a href="/~jonathan">~jonathan</a></li>
@ -76,26 +84,19 @@
<li>10/3/2014 | <a href="/~englishm">~englishm</a></li> <li>10/3/2014 | <a href="/~englishm">~englishm</a></li>
<li>10/3/2014 | <a href="/~danbri">~danbri</a></li> <li>10/3/2014 | <a href="/~danbri">~danbri</a></li>
</ul> </ul>
</div>
</div> </div>
<div class="col"> <div class="col">
<p>
tilde.club is not a social network it is one tiny totally
standard unix computer that people respectfully use together
in their shared quest to build awesome web pages
</p>
<p>
If you would like a list of <a href="http://tilde.club/tilde.24h.php">
RECENTLY CHANGED PAGES</a> you can see that too
</p>
<h3>here are the home pages of our users</h3> <h3>here are the home pages of our users</h3>
<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>
<ul class="user-list">
<ol>
<?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) ||
@ -109,9 +110,11 @@
$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> </div>
</div> </div>
<p>big kudos and thanks to the people who built the original tilde.club!</p> <p>big kudos and thanks to the people who built the original tilde.club!</p>

View File

@ -12,9 +12,24 @@
border: 6px double #fb5; border: 6px double #fb5;
padding: 1em; padding: 1em;
} }
ol {
margin-left: 1em; .user-list {
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
} }
.user-list li {
margin-left: 5%;
width: 20%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.user-list::after {
content: "";
flex: auto;
}
body { body {
margin: auto; margin: auto;
padding: 1em; padding: 1em;