42 lines
2.1 KiB
Plaintext
42 lines
2.1 KiB
Plaintext
{{define "continue_watching"}}
|
|
<section class="w-full">
|
|
<h2 class="mb-3 text-lg font-normal text-neutral-300">Continue Watching</h2>
|
|
|
|
<div class="scrollbar-hide flex snap-x snap-mandatory gap-2 overflow-x-auto pb-4">
|
|
{{range .}}
|
|
{{$title := .TitleOriginal}}
|
|
{{if .TitleEnglish.Valid}}{{$title = .TitleEnglish.String}}{{end}}
|
|
|
|
<a href="/anime/{{.AnimeID}}/watch" class="group relative w-70 shrink-0 snap-start cursor-pointer space-y-2 2xl:w-lg">
|
|
<div class="bg-background/80 relative aspect-video w-full overflow-hidden">
|
|
<img src="{{if .ImageUrl}}{{.ImageUrl}}{{else}}https://placehold.co/500x500{{end}}" alt="{{$title}}" class="h-full w-full object-cover" />
|
|
|
|
<div class="absolute inset-0 z-10 flex flex-col p-3 opacity-0 transition-opacity duration-300 group-hover:opacity-100 bg-black/40">
|
|
<div class="flex justify-end">
|
|
<button class="bg-black/60 hover:bg-black/80 rounded-full p-1.5 text-white transition-colors focus:outline-none disabled:opacity-50 backdrop-blur-sm" aria-label="Remove from Continue Watching">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="size-5"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
{{if .CurrentTimeSeconds}}
|
|
<!-- Progress calculation would go here if total duration was available -->
|
|
<div class="bg-foreground-muted/60 absolute bottom-0 left-0 h-1.5 w-full z-20">
|
|
<div class="shadow-background/20 bg-accent h-full shadow-[0_-2px_5px_0]" style="width: 50%"></div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
<div>
|
|
<h3 class="text-foreground truncate text-lg font-normal">
|
|
{{$title}}
|
|
</h3>
|
|
<p class="text-foreground-muted mt-0.5 text-base">
|
|
{{if .CurrentEpisode.Valid}}Episode {{.CurrentEpisode.Int64}}{{end}}
|
|
</p>
|
|
</div>
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</section>
|
|
{{end}} |