a bit of content updates

This commit is contained in:
Ben Harris 2018-12-17 16:28:43 -05:00
parent 2518a1d29a
commit 677ca57e36
2 changed files with 12 additions and 6 deletions

View File

@ -1,7 +1,13 @@
<?php include 'header.php'; ?>
<h1><img style="width:75px;" src="./logos/tildeverse-green.png">tildeverse.org</h1>
<p>We're working on providing services to <a href="members.php">the tildeverse,</a> a community of GNU+Linux boxes that aim to share the fun and love!</p>
<h2>Our Services</h2>
<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>
<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</p>
<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">

View File

@ -1,7 +1,7 @@
<?php include 'header.php'; ?>
<h1><img style="width:75px;" src="./logos/tildeverse-green.png">tildeverse members</h1>
<?php include __DIR__.'/../header.php'; ?>
<h1><img style="width:75px;" src="../logos/tildeverse-green.png">tildeverse members</h1>
<div class="list-group">
<?php foreach (json_decode(file_get_contents("members.json"))->members ?? [] as $member): ?>
<?php foreach (json_decode(file_get_contents("../members.json"))->members ?? [] as $member): ?>
<div class="list-group-item">
<h3 class="list-group-item-heading"><a href="<?=$member->link?>"><?=$member->name?></a></h3>
<p class="list-group-item-text"><?=$member->description?></p>
@ -14,4 +14,4 @@
</div>
<?php endforeach;?>
</div>
<?php include 'footer.php'; ?>
<?php include __DIR__.'/../footer.php'; ?>