Files
easystream/templates_engine/watch.tpl
T
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

22 lines
683 B
Smarty

{include file="header.tpl"}
<div class="row">
<div class="col-md-8">
<div class="video-player">
<video id="video-player" class="w-100" controls>
<source src="{$video_url}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="video-info mt-3">
<h2>{$video_title}</h2>
<p>{$video_description}</p>
</div>
</div>
<div class="col-md-4">
<div class="related-videos">
<h4>Related Videos</h4>
<!-- Related videos will be loaded here -->
</div>
</div>
</div>
{include file="footer.tpl"}