site/index.php

100 lines
3.9 KiB
PHP
Raw Normal View History

2017-09-13 15:22:06 +00:00
<!DOCTYPE html>
<html lang="en">
2017-12-20 22:09:36 +00:00
2017-09-13 15:22:06 +00:00
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="tilde.team unix group">
<meta name="author" content="Ben Harris">
<title>tilde.team</title>
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
2017-12-20 22:09:36 +00:00
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
2017-09-13 15:22:06 +00:00
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#00cc00">
<link rel="stylesheet" href="/css/hacker.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
<div class="container">
2017-12-20 22:09:36 +00:00
<h1>~~~tilde.team~~~</h1>
2017-12-28 17:49:03 +00:00
<pre>
2017-09-13 15:22:06 +00:00
__ _ __ __ __
/ /_(_) /___/ /__ / /____ ____ _____ ___
/ __/ / / __ / _ \ / __/ _ \/ __ `/ __ `__ \
/ /_/ / / /_/ / __// /_/ __/ /_/ / / / / / /
\__/_/_/\__,_/\___(_)__/\___/\__,_/_/ /_/ /_/
</pre>
2017-12-20 22:09:36 +00:00
<br>
<p>tilde.team is one tiny standard unix computer in the cloud that anyone can use and learn to use in the shared pursuit
of cool sites and unix tools.</p>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<p>i created this site after hearing about paul ford's
<a href="http://tilde.club">tilde.club</a>. when i was unable to join due to the waitlist, i decided to create my own. see
2017-12-28 18:13:16 +00:00
<a href="/~ben/">my tilde page</a> or my
<a href="https://benharr.is/">personal site</a> for more info about me.</p>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<br>
2017-12-28 18:13:16 +00:00
<a href="/signup/" class="btn btn-primary btn-lg">
2017-12-20 22:09:36 +00:00
<i class="fa fa-user-plus"></i> signup</a>
2017-09-13 15:22:06 +00:00
2017-12-28 18:13:16 +00:00
<a href="/faq/" class="btn btn-warning btn-lg">
2017-12-20 22:09:36 +00:00
<i class="fa fa-info"></i> faq</a>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<br>
<br>
<hr>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<h1>other tilde things</h1>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<a class="btn btn-info" href="/discord/">
<i class="fa fa-comments"></i> tilde~discord</a>
<a class="btn btn-info" href="https://github.com/tilde-team">
<i class="fa fa-github"></i> tilde~githuborg</a>
<a class="btn btn-info" href="https://bhh.sh">
<i class="fa fa-link"></i> url shortener</a>
2017-12-21 14:21:01 +00:00
<a class="btn btn-info" href="https://social.tilde.team/">
2017-12-21 21:14:28 +00:00
<i class="fa fa-retweet"></i> tilde.team mastodon instance</a>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<br>
<hr>
<h1>users:</h1>
2017-12-28 18:13:16 +00:00
<a href="/tilde.24h.html">last updated users (only shows changes in the last 24 hours)</a>
2017-12-28 15:57:11 +00:00
<br><br>
2017-12-28 18:13:16 +00:00
<?php foreach (array_diff(scandir("/home"), ['..', '.']) as $user) { if (!is_dir("/home/$user/public_html")) continue; ?>
2017-09-13 15:22:06 +00:00
<div class="list-group">
<a href="/~<?=$user?>/" class="list-group-item">
2017-12-28 18:13:16 +00:00
<h5 class="list-group-item-heading">~<?=$user?></h5>
2017-09-13 15:22:06 +00:00
</a>
</div>
<?php } ?>
2017-09-13 15:22:06 +00:00
2017-12-20 22:09:36 +00:00
<hr>
2017-09-13 15:22:06 +00:00
</div>
2017-12-20 22:09:36 +00:00
<br>
<br>
2017-09-13 15:22:06 +00:00
</body>
2017-12-20 22:09:36 +00:00
</html>