add tilde.club the OG

This commit is contained in:
Ben Harris 2019-09-13 18:35:39 -04:00
parent f26bd66bd3
commit af075bea0e
3 changed files with 21 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>tildeverse</title> <title>tildeverse<?=isset($title) ? " | $title" : "" ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://tilde.team/css/hacker.css"> <link rel="stylesheet" href="https://tilde.team/css/hacker.css">
</head> </head>

View File

@ -110,6 +110,24 @@
] ]
] ]
}, },
{
"description": "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",
"link": "https://tilde.club",
"gopher": "tilde.club",
"name": "tilde.club",
"channel": "#club",
"os": "fedora",
"sysadmins": [
[
"deepend",
"https://tilde.club/~deepend/"
],
[
"benharri",
"https://tilde.club/~benharri/"
]
]
},
{ {
"description": "Providing a space in the tildeverse for users to learn about the OpenBSD operating system", "description": "Providing a space in the tildeverse for users to learn about the OpenBSD operating system",
"link": "https://tilde.institute", "link": "https://tilde.institute",

View File

@ -1,4 +1,4 @@
<?php include __DIR__.'/../header.php'; ?> <?php $title = "members"; include __DIR__.'/../header.php'; ?>
<h1><img style="width:75px;" src="../logos/tildeverse-green.png">tildeverse members</h1> <h1><img style="width:75px;" src="../logos/tildeverse-green.png">tildeverse members</h1>
<p><a href="/">&lt; back</a></p> <p><a href="/">&lt; back</a></p>
<div class="list-group"> <div class="list-group">
@ -14,6 +14,7 @@
<?php endforeach; ?> <?php endforeach; ?>
</p> </p>
<p><strong>os</strong>: <?=$member->os?></p> <p><strong>os</strong>: <?=$member->os?></p>
<p><strong>channel</strong>: <?=$member->channel?></p>
</div> </div>
</div> </div>
<?php endforeach;?> <?php endforeach;?>