Files
Krystie 092a8bc7ce refactor: organize codebase and remove redundant files
- Removed all backup/duplicate files
- Removed test files from root
- Consolidated documentation to /docs/
- Moved scripts to /scripts/
- Renamed f_* directories (removed prefix)
- Organized icons and assets
- Removed unused vendor directories
- Cleaned up redundant config files
2026-03-30 16:34:45 -07:00

36 lines
1.3 KiB
Smarty

<div class="watch-page">
<div class="video-player">
<video controls width="100%" height="400">
<source src="{$video.file_path}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="video-info">
<h1>{$video.file_title}</h1>
<div class="video-meta">
<span class="views">{$video.file_views} views</span>
<span class="date">{$video.upload_date}</span>
<div class="actions">
<button class="btn-like">👍 Like</button>
<button class="btn-dislike">👎 Dislike</button>
<button class="btn-share">📤 Share</button>
</div>
</div>
<div class="video-description">
<p>{$video.file_description}</p>
</div>
</div>
<div class="comments-section">
<h3>Comments</h3>
<div class="comment-form">
<textarea placeholder="Add a comment..."></textarea>
<button>Post Comment</button>
</div>
<div class="comments-list">
{$comments}
</div>
</div>
</div>