llhd/Views/WebNew/Video.cshtml

33 lines
732 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@{
ViewData["Title"] = "Video";
Layout = "~/Views/WebNew/Shared/_Layout.cshtml";
}
@section Style {
<link rel="stylesheet" href="~/webnew/css/video.css" asp-append-version="true" />
}
@section Scripts {
<script src="~/webnew/pages/video.js"></script>
}
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml")
<div class="container my-5">
<h3 class="fw-bold mb-4 text-center">Galeri Video</h3>
<div class="row g-4" id="video-list"></div>
</div>
<div id="videoModal" class="video-modal">
<div class="video-content">
<span class="close-btn" onclick="closeVideo()">×</span>
<iframe id="videoFrame" frameborder="0" allowfullscreen></iframe>
</div>
</div>