mirror of https://github.com/tildeclub/site.git
commit
c8179d140c
57
index.php
57
index.php
|
@ -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>we have a new donation page set up on <a href="https://liberapay.com/tilde.club">liberapay</a></li>
|
||||
</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>
|
||||
|
||||
<h2>tilde.club gold star supporters</h2>
|
||||
|
||||
<p>Tilde.Club is supported by a global community of good people. We
|
||||
don't rank people by the amount they give, only by the fact that they
|
||||
gave. Here's who has donated! When you're on the server, THANK
|
||||
THEM.</p>
|
||||
|
||||
<p>Tilde.Club is supported by a global community of
|
||||
good people. We don't rank people by the amount
|
||||
they give, only by the fact that they gave.
|
||||
Here's who has donated! When you're on the
|
||||
server, THANK THEM.</p>
|
||||
<ul>
|
||||
<li>4/21/2020 | <a href="/~cano">~cano</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>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="/~droob">~droob</a></li>
|
||||
<li>10/5/2014 | <a href="/~delfuego">~delfuego</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="/~danbri">~danbri</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</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>
|
||||
|
||||
<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>if you're not seeing yourself listed here, change your page from the default.</p>
|
||||
<p><a href="/users/">list all users</a></p>
|
||||
|
||||
<ol>
|
||||
<ul class="user-list">
|
||||
<?php foreach (glob("/home/*") as $user) {
|
||||
$index = "$user/public_html/index.html";
|
||||
if (!file_exists($index) ||
|
||||
|
@ -109,9 +110,11 @@
|
|||
$user = basename($user); ?>
|
||||
<li><a href="/~<?=$user?>/">~<?=$user?></a></li>
|
||||
<?php } ?>
|
||||
</ol>
|
||||
</div>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<p>big kudos and thanks to the people who built the original tilde.club!</p>
|
||||
|
|
19
style.css
19
style.css
|
@ -12,9 +12,24 @@
|
|||
border: 6px double #fb5;
|
||||
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 {
|
||||
margin: auto;
|
||||
padding: 1em;
|
||||
|
|
Loading…
Reference in New Issue