33 lines
732 B
Plaintext
33 lines
732 B
Plaintext
@{
|
||
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>
|
||
|
||
|