This commit is contained in:
2024-10-29 14:04:59 +08:00
commit 48bf3e6f33
2839 changed files with 762707 additions and 0 deletions

148
app/id/view/article/lists.phtml Executable file
View File

@@ -0,0 +1,148 @@
<!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-Index">
<div id="header" class="theme-white">
{include file="include/top" /}
{include file="include/top-header" /}
</div>
</header>
{include file="include/top-header-mobile" /}
<!--top End-->
<!-- 轮播 s -->
<div class="homeban banner-other">
<div class="bd">
<ul>
<li><a href="#"><img src="__PUBLIC__/web/uploadfiles/image/ban2.jpg"/></a></li>
</ul>
</div>
</div>
<!-- 轮播 e -->
<!-- 新闻列表 s -->
<div class="new">
<div class="swt-Container">
<div class="vtext">
<p class="tl1">News</p>
<p class="tl2"></p>
</div>
<?php if ($list): ?>
<ul class="newfl">
<?php foreach ($list as $detail): ?>
<li>
<div class="xwtit"><a href="id<?php echo url_rewrite('/articledetail', array('id' => $detail['id'])); ?>"><?php echo $detail['name']; ?></a></div>
<div class="xname"><?php echo $detail['writer']; ?> published <?php echo getHMStime($detail['createtime'], time()); ?>/key words<?php echo $detail['tags']; ?></div>
<div class="xwcon"><?php echo msubstr($detail['description'], 0, 200); ?></div>
<div class="xwimg"><img src="<?php echo getImage($detail['picture'], 951, 459, 6); ?>"></div>
<div class="detail"><a href="id<?php echo url_rewrite('/articledetail', array('id' => $detail['id'])); ?>"><i></i>Detailed reading</a></div>
<div class="fx">
<a href="#"><i class="f1"></i>Share</a>
<a href="#"><i class="f2"></i>Favorite</a>
<a href="#"><i class="f3"></i>Comment (15)</a>
</div>
<div class="clear"></div>
</li>
<?php endforeach; ?>
<!-- 分页 s -->
<?php
if ($page) {
echo $page;
}
?>
<!-- 分页 e -->
</ul>
<?php endif; ?>
<div class="newrh">
<div class="plun">Wonderful Reviews</div>
<ul class="pllist">
<li>
<a href="#">
<div class="plfl">
<div class="plimg"><img src="__PUBLIC__/web/uploadfiles/image/ns1.jpg"></div>
<div class="peo1">Visitor</div>
<div class="peo2">2018-09-05</div>
</div>
<div class="plrh">
<div class="plrh1">ELITE916 of PHANTEKS, JD 7K supports ATX&ITX dual systems . And I remember 916 dual-system needs two power adapters. </div>
<div class="plrh2">REVOLTX power adapter and EVOLVX host. Thats friendly for users needing two systems… </div>
</div>
<div class="clear"></div>
</a>
</li>
<li>
<a href="#">
<div class="plfl">
<div class="plimg"><img src="__PUBLIC__/web/uploadfiles/image/ns2.jpg"></div>
<div class="peo1">Visitor</div>
<div class="peo2">2018-09-05</div>
</div>
<div class="plrh">
<div class="plrh1">ELITE916 of PHANTEKS, JD 7K supports ATX&ITX dual systems . And I remember 916 dual-system needs two power adapters. </div>
<div class="plrh2">REVOLTX power adapter and EVOLVX host. Thats friendly for users needing two systems… </div>
</div>
<div class="clear"></div>
</a>
</li>
<li>
<a href="#">
<div class="plfl">
<div class="plimg"><img src="__PUBLIC__/web/uploadfiles/image/ns3.jpg"></div>
<div class="peo1">Visitor</div>
<div class="peo2">2018-09-05</div>
</div>
<div class="plrh">
<div class="plrh1">ELITE916 of PHANTEKS, JD 7K supports ATX&ITX dual systems . And I remember 916 dual-system needs two power adapters.
</div>
<div class="plrh2">REVOLTX power adapter and EVOLVX host. Thats friendly for users needing two systems… </div>
</div>
<div class="clear"></div>
</a>
</li>
<li>
<a href="#">
<div class="plfl">
<div class="plimg"><img src="__PUBLIC__/web/uploadfiles/image/ns4.jpg"></div>
<div class="peo1">Visitor</div>
<div class="peo2">2018-09-05</div>
</div>
<div class="plrh">
<div class="plrh1">ELITE916 of PHANTEKS, JD 7K supports ATX&ITX dual systems . And I remember 916 dual-system needs two power adapters. </div>
<div class="plrh2">REVOLTX power adapter and EVOLVX host. Thats friendly for users needing two systems… </div>
</div>
<div class="clear"></div>
</a>
</li>
<li>
<a href="#">
<div class="plfl">
<div class="plimg"><img src="__PUBLIC__/web/uploadfiles/image/ns5.jpg"></div>
<div class="peo1">Visitor</div>
<div class="peo2">2018-09-05</div>
</div>
<div class="plrh">
<div class="plrh1">ELITE916 of PHANTEKS, JD 7K supports ATX&ITX dual systems . And I remember 916 dual-system needs two power adapters. </div>
<div class="plrh2">REVOLTX power adapter and EVOLVX host. Thats friendly for users needing two systems… </div>
</div>
<div class="clear"></div>
</a>
</li>
</ul>
</div>
<div class="clear"></div>
</div>
</div>
<!-- 新闻列表 e -->
<!-- bottom s -->
{include file="include/bottom" /}
<!-- bottom e -->
</body>
</html>