site/index.php

20 lines
1.6 KiB
PHP
Raw Normal View History

2018-07-17 22:41:34 +00:00
<?php include 'header.php'; ?>
<h1><img style="width:75px;" src="./logos/tildeverse-green.png">tildeverse.org</h1>
2018-12-17 21:28:43 +00:00
<p>we're a loose association of like-minded <em>tilde</em> communities. if you're interested in learning about *nix (linux, unix, bsd, etc) come check out our <a href="members/">member tildes</a> and sign up!</p>
<p>we're working on providing services to <a href="members/">the tildeverse,</a> a community of *nix boxes that aim to share the fun and love!</p>
2019-01-30 04:02:42 +00:00
<p>stop by our <a href="https://tilde.chat">irc network</a> (or use our <a href="https://web.tilde.chat">web client</a>) and hang out. there's a bot that can toot from <a rel="me" href="https://tilde.zone/@tildeverse">this mastodon account</a>, but it's mostly silly quotes from chat.</p>
2018-12-17 21:28:43 +00:00
<h2>services and projects</h2>
<p>here are some of the things that we provide for tilde users and some projects that we're working on</p>
<p>this list is generated from the <a href="https://tildegit.org/tildeverse">tildeverse org</a> on our <a href="https://tildegit.org">gitea</a></p>
<div class="list-group">
<?php foreach (json_decode(file_get_contents("https://tildegit.org/api/v1/orgs/tildeverse/repos")) ?? [] as $repo): ?>
<div class="list-group-item">
<h3 class="list-group-item-heading"><a href="<?=$repo->html_url?>"><?=$repo->name?></a></h3>
<p class="list-group-item-text"><?=$repo->description?><?php if ($repo->website != ""): ?> - <em><a href="<?=$repo->website?>"><?=$repo->website?></a></em><?php endif; ?></p>
</div>
<?php endforeach;?>
</div>
2018-07-17 22:41:34 +00:00
<?php include 'footer.php'; ?>