zedshaw.games/pages/stream/index.html
2025-08-11 13:56:06 -04:00

21 lines
743 B
HTML

<script>
let Streams = new PaginateTable("/api/stream");
</script>
<block>
<h1 id="page-title">Past Streams</h1>
<p>This is where you can checkout information we dropped in a past stream. Did I post a link and you need to remember it? Did someone in chat mention something? Here's where you find it.</p>
</block>
<block x-data="Streams" class="gap-4">
<template x-for="item in contents">
<stream class="flex p-3 gap-4 bg-gray-800">
<shape class="xxs">Stream Thumbnail</shape>
<info>
<date x-text="item.date"></date>
<p x-text="item.description"></p>
<a style="text-align: right" x-bind:href="'/stream/' + item.id + '/'">View This Stream</a>
</info>
</stream>
</template>
</block>