mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 18:10:06 -04:00
Update +page.svelte
This commit is contained in:
parent
8f37488278
commit
156dd81f26
1 changed files with 32 additions and 30 deletions
|
@ -42,7 +42,8 @@
|
||||||
>
|
>
|
||||||
loading...
|
loading...
|
||||||
</div>
|
</div>
|
||||||
{/if} {#if channel}
|
{/if}
|
||||||
|
{#if channel}
|
||||||
<div class="border rounded-md border-gray-200 dark:border-gray-700 dark:bg-gray-800 bg-white">
|
<div class="border rounded-md border-gray-200 dark:border-gray-700 dark:bg-gray-800 bg-white">
|
||||||
<div
|
<div
|
||||||
class="flex justify-between items-center py-4 pl-5 pr-4 rounded-t border-b dark:border-gray-700"
|
class="flex justify-between items-center py-4 pl-5 pr-4 rounded-t border-b dark:border-gray-700"
|
||||||
|
@ -51,11 +52,12 @@
|
||||||
<h1 class="text-l font-medium text-gray-900 dark:text-white">{channel.name}</h1>
|
<h1 class="text-l font-medium text-gray-900 dark:text-white">{channel.name}</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="overflow-y-scroll overflow-x-hidden w-full p-10">
|
<div class="overflow-y-auto overflow-x-hidden w-full p-10">
|
||||||
<HTMLPreview data="{channel}" />
|
<HTMLPreview data={channel} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if} {#if streams.length}
|
{/if}
|
||||||
|
{#if streams.length}
|
||||||
<div class="border rounded-md border-gray-200 dark:border-gray-700 dark:bg-gray-800 bg-white">
|
<div class="border rounded-md border-gray-200 dark:border-gray-700 dark:bg-gray-800 bg-white">
|
||||||
<div
|
<div
|
||||||
class="flex justify-between items-center py-4 pl-5 pr-4 rounded-t border-b dark:border-gray-700"
|
class="flex justify-between items-center py-4 pl-5 pr-4 rounded-t border-b dark:border-gray-700"
|
||||||
|
@ -64,10 +66,10 @@
|
||||||
<h3 class="text-l font-medium text-gray-900 dark:text-white">Streams</h3>
|
<h3 class="text-l font-medium text-gray-900 dark:text-white">Streams</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="overflow-y-scroll overflow-x-hidden w-full p-6">
|
<div class="overflow-y-auto overflow-x-hidden w-full p-6">
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
{#each streams as stream}
|
{#each streams as stream}
|
||||||
<StreamItem stream="{stream}" />
|
<StreamItem {stream} />
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -82,7 +84,7 @@
|
||||||
<h3 class="text-l font-medium text-gray-900 dark:text-white">Guides</h3>
|
<h3 class="text-l font-medium text-gray-900 dark:text-white">Guides</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="overflow-y-scroll overflow-x-hidden w-full p-6">
|
<div class="overflow-y-auto overflow-x-hidden w-full p-6">
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
{#each guides as guide}
|
{#each guides as guide}
|
||||||
<GuideItem guide="{guide}" />
|
<GuideItem guide="{guide}" />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue