This repository has been archived on 2021-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
site/schedule/index.php
2020-06-18 02:21:52 -04:00

15 lines
458 B
PHP

<?php
include '../header.php';
$schedule = json_decode(file_get_contents("https://radio.tildeverse.org/api/station/1/schedule"), true);
?>
<h1><a href="https://tilderadio.org"><img style="width:75px;" src="../logos/tilderadio-green.png">tilderadio.org</a></h1>
<br>
<h4>upcoming broadcasts</h4>
<?php foreach ($schedule as $item): ?>
<p><?=$item["name"]?> - <?=$item["start"]?>-<?=$item["end"]?></p>
<?php endforeach; ?>
<?php include '../footer.php'; ?>