{$_("videos.title")}

{$_("videos.description")}

{ searchValue = (e.target as HTMLInputElement).value; debounceSearch(searchValue); }} class="pl-10 bg-background/50 border-primary/20 focus:border-primary" />
{#each data.items as video (video.slug)}
{video.title}
{#if video.movie_file?.duration}{formatVideoDuration(video.movie_file.duration)}{/if}
{#if video.premium}
{$_("videos.premium")}
{/if} {#if video.plays_count}
{video.plays_count}
{/if}

{video.title}

{timeAgo.format(new Date(video.upload_date))}

{/each}
{#if data.items.length === 0}

{$_("videos.no_results")}

{/if} {#if totalPages > 1}
{$_("common.page_of", { values: { page: data.page, total: totalPages } })}  ยท  {$_("common.total_results", { values: { total: data.total } })}
{/if}