Files
orico-official-website-old/app/mobile/view/video/lists.phtml
2024-10-29 14:04:59 +08:00

70 lines
2.0 KiB
PHTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>视频教程</title>
{include file="include/head" /}
<script type="text/javascript">
var navID = "1";
</script>
</head>
<body>
<div id="content">
<!--头部-->
{include file="include/top" /}
<!--banner-->
<div class="banner img-responsive margin-top-90">
<img src="__PUBLIC__/m_web/images/video/video-banner.jpg">
</div>
<!--视频分类列表-->
<?php if (!empty($videoCategory)): ?>
<div class="m_Container video_Category img-responsive overflow-h margin-top-10">
<div class="list_two">
<ul>
<?php foreach ($videoCategory as $key => $value): ?>
<li>
<a href="__ORICOROOT__/video/catelists/id/<?php echo $value['id']; ?>">
<img src="<?php echo getImage($value['m_bg']); ?>">
<p><?php echo $value['name']; ?></p>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif; ?>
<!--热门视频-->
<div class="m_Container">
<div class="title text_center title_margin-top">热门视频</div>
<?php $hot_video = getDifferentVideo('ishot', 2); ?>
<?php if ($hot_video): ?>
<div class="video_hot subtitle_margin-top">
<ul>
<?php foreach ($hot_video as $key => $value): ?>
<li>
<video controls poster="<?php echo getImage($value['picture']); ?>">
<source src="<?php echo $value['videopath'];?>" type="video/mp4" />
您的浏览器不支持 video 标签。
Your browser does not support HTML5 video.
</video>
<span class="title text_center margin-top-30"><?php echo $value['name']; ?></span>
<span class="des_text text_center"><?php echo $value['description']; ?></span>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
</div>
<!--底部文件-->
{include file="include/bottom" /}
</div>
</body>
</html>