A website for my game dev stuff that supports chat, etc.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
< 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-300 dark:bg-gray-800" >
< shape class = "xxs bg-gray-400! dark:bg-gray-300" > 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 >