36439-vm/video.php
2025-11-28 18:47:44 +00:00

98 lines
4.3 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Title | MyTube</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<div class="video-container">
<!-- Video Player -->
<div class="video-player">
<div class="video-player-placeholder">
<i class="material-icons" style="font-size: 64px;">play_circle_filled</i>
</div>
</div>
<!-- Video Info -->
<h1 class="video-title">Exploring the Alps: A Scenic Journey</h1>
<div class="d-flex justify-content-between align-items-center">
<div class="video-stats">
<span>1,234,567 views</span>
<span>&bull;</span>
<span>2 weeks ago</span>
</div>
<div class="action-buttons">
<button class="btn"><i class="material-icons">thumb_up</i> 15K</button>
<button class="btn"><i class="material-icons">thumb_down</i> 432</button>
<button class="btn"><i class="material-icons">share</i> Share</button>
<button class="btn"><i class="material-icons">playlist_add</i> Save</button>
</div>
</div>
<!-- Channel Info -->
<div class="channel-info">
<img src="https://i.pravatar.cc/48?u=channel1" alt="Channel Avatar">
<div class="flex-grow-1">
<div class="channel-name">NatureWalks</div>
<div class="channel-subs">2.3M subscribers</div>
</div>
<button class="btn subscribe-btn">Subscribe</button>
</div>
<!-- Description -->
<div class="description-box">
<strong>Description</strong>
<div class="description-content">
<p>Join us on an incredible adventure through the stunning landscapes of the Swiss Alps. From breathtaking peaks to serene lakes, this is a journey you won't forget.</p>
<p>Filmed with a Drone Pro 4K.</p>
</div>
</div>
<!-- Comments -->
<div class="comments-section">
<h3>3 Comments</h3>
<div class="comment">
<img src="https://i.pravatar.cc/40?u=user1" alt="User Avatar">
<div class="comment-body">
<div class="comment-author">Alex Doe</div>
<div class="comment-text">Wow, amazing footage! What drone did you use?</div>
<div class="comment-actions">
<span>Like</span> &bull; <span>Reply</span>
</div>
</div>
</div>
<div class="comment">
<img src="https://i.pravatar.cc/40?u=user2" alt="User Avatar">
<div class="comment-body">
<div class="comment-author">Jane Smith</div>
<div class="comment-text">Makes me want to book a flight right now!</div>
<div class="comment-actions">
<span>Like</span> &bull; <span>Reply</span>
</div>
<!-- Nested Comment -->
<div class="comment mt-3">
<img src="https://i.pravatar.cc/40?u=channel1" alt="User Avatar">
<div class="comment-body">
<div class="comment-author">NatureWalks</div>
<div class="comment-text">Glad you liked it! It was filmed with a Drone Pro 4K.</div>
<div class="comment-actions">
<span>Like</span> &bull; <span>Reply</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>