Files
orico-official-website-old/app/index/view/download/detail-old.phtml
2024-10-29 14:04:59 +08:00

50 lines
1.7 KiB
PHTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
{include file="include/head" /}
<script type="text/javascript">
var navID = "1";
</script>
</head>
<body>
<!--top-->
<header class="header-PC header-Product">
<div id="header" class="theme-white">
{include file="include/top-header2023" /}
</div>
</header>
<!--top End-->
<!-- 视频播放页 s -->
<div class="play">
<div class="playv">
<div class="plvimg">
<video width="100%" height="auto" controls poster="<?php echo $detail['picture']; ?>">
<source src="<?php echo $detail['videopath']; ?>">
您的浏览器不支持 video 标签。
Your browser does not support HTML5 video.
</video>
</div>
</div>
<div class="playt">
<div class="plcon">
<div class="vtext">
<p class="tl1"><?php echo $detail['name']; ?><i><img src="__PUBLIC__/web/images/dot1.png"></i></p>
<p class="date">发布日期:<?php echo date('Y-m-d', $detail['createtime']); ?></p>
<p class="tl2"></p>
</div>
<div class="pltext">
<?php echo $detail['content']; ?>
</div>
</div>
</div>
</div>
<!-- 视频播放页 e -->
<!-- bottom s -->
{include file="include/bottom2023" /}
<!-- bottom e -->
</body>
</html>