Updated the layout to have a blockstart for every page so that markdown works.
This commit is contained in:
parent
d856784823
commit
d98325564f
16 changed files with 26 additions and 53 deletions
|
@ -2,22 +2,20 @@
|
|||
let Streams = new PaginateTable("/api/stream");
|
||||
</script>
|
||||
|
||||
<blockstart>
|
||||
<block style="--value: 7">
|
||||
<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 style="--value: 7">
|
||||
<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">
|
||||
<template x-for="item in contents">
|
||||
<stream class="horizontal">
|
||||
<shape style="--w: 100px; --h: 100px">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>
|
||||
</blockstart>
|
||||
<block x-data="Streams">
|
||||
<template x-for="item in contents">
|
||||
<stream class="horizontal">
|
||||
<shape style="--w: 100px; --h: 100px">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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue