mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2025-09-08 06:58:43 +00:00
14 lines
352 B
HTML
14 lines
352 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"
|
|
>
|
|
<!-- Videos will be dynamically inserted here -->
|
|
</div>
|
|
</section>
|