byecorps.com/home.php
bye 6873a59d19 Multiple changes
+ Make the TV at the bottom have a random chance to show the trans flag
+ Homepage shows an ad for ByeCorps stuff
2024-06-06 15:25:23 +01:00

57 lines
1.9 KiB
PHP

<p>No, we don't know what we're making either.</p>
<!---->
<!--<div style="background-color: #ff6f6f; margin: 16px -16px; padding: 16px;">-->
<!-- The server "potato" will be undergoing maintenance on Sunday, 31st March, hopefully around noon Irish Summer Time (@500 .beats) for a few minutes. Expect everything ByeCorps-related to go offline, including byecorps.com.-->
<!--</div>-->
<?php
$products = [
["src" => "/img/productads/parked.lol.gif", "name" => "parked.lol", "href" => "https://parked.lol"],
["src" => "/img/productads/bcid.gif", "name" => "ByeCorps ID", "href" => "https://id.byecorps.com"],
];
$random_product = $products[array_rand($products)];
?>
<div style="background-color: #eee; height: 200px; margin: 16px -16px; padding: 0">
<a href="<?= $random_product['href'] ?>">
<img src="<?= $random_product['src'] ?>" width="600" height="200" alt="<?= $random_product['name'] ?>">
</a>
</div>
<p class="socials">
Find us on: <br>
<a href="https://github.com/byecorps">GitHub</a>
<a href="https://fedi.byecorps.com/@byecorps">Fediverse</a>
<a href="https://youtube.com/@byecorps">YouTube</a>
</p>
<h2>People</h2>
<table id="people">
<tr>
<td>
<img src="./img/byeman-bcprofile2.gif" alt="Bye's profile picture.">
</td>
<td>
<h3>Bye</h3>
<p>Bye is the founder and sole member of ByeCorps</p>
<p>
<a href="https://byemc.xyz">Website</a>
<a href="https://github.com/byemc">GitHub</a>
<a href="https://fedi.byecorps.com/@bye">Fediverse</a>
<a href="https://bye.omg.lol">omg.lol</a>
</p>
</td>
</tr>
</table>
<h2>Friends</h2>
<p>Check out some of our friends!</p>
<div id="friends">
<a href="https://litdevs.org">
<img src="./img/litdevs.gif" alt="LIT Devs"></a>
<a href="https://neatnik.net">
<img src="./img/neatnik.png" alt="Neatnik"></a>
<a href="https://nineplus.sh">
<img src="./img/nineplus.gif" alt="ninePLUS"></a>
</div>