mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2026-03-14 06:44:19 +00:00
19 lines
606 B
HTML
19 lines
606 B
HTML
<!-- views/most-recent-videos.html -->
|
|
<section>
|
|
<!-- You can have a heading if you want -->
|
|
<h2 class="text-xl mb-4 text-gray-700">Most Recent Videos</h2>
|
|
|
|
<!-- Video List -->
|
|
<div
|
|
id="videoList"
|
|
class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-8"
|
|
>
|
|
<div class="sidebar-loading-wrapper" role="status" aria-live="polite">
|
|
<div class="sidebar-loading-indicator">
|
|
<span class="status-spinner status-spinner--inline" aria-hidden="true"></span>
|
|
<span class="sidebar-loading-text">Fetching recent videos…</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|