stowtop.htm
2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<title>收藏夹 - 会员中心 - <?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" src="templets/js/load.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php"); ?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li><a href="mystow.php">我的收藏</a></li>
<li class="thisTab"><a href="mystow.php?type=top20">收藏排行</a></li>
</ul>
<div class="tabOther"> </div>
</div>
<ul class="tabSub">
<?php
foreach($rows as $row)
{
?>
<li <?php if($type==$row['stowname']) echo 'class="thisTab"';?> ><a href="mystow.php?rank=top&type=<?php echo $row['stowname'];?>"><span><?php echo $row['indexname'];?></span></a></li>
<?php }?>
</ul>
<div id="mainCp">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="listStyle2">
<thead>
</thead>
<tbody>
{dede:datalist}
<tr>
<td colspan="5" class="tabTitle"><?php if($fields["stowname"]!='sys') {?>
<a href='{dede:field.indexurl/}={dede:field.aid/}' target='_blank'>{dede:field.title/}</a>
<?php }else{ ?>
<a href='archives_do.php?dopost=viewArchives&aid={dede:field.aid/}' target='_blank'>{dede:field.title/}</a>
<?php }?></td>
<td width="25%" align="center" class="doPost"><span class="itemDigg">
<a class="text_button" href="../plus/recommend.php?type={dede:field.type/}&aid={dede:field.aid/}" target="_blank">[推荐]</a>
</span> <span class="itemManage">
<a href='archives_do.php?dopost=delStow&type={dede:field.type/}&aid={dede:field.aid/}'>[删除]</a>
</span></td>
</tr>
<tr>
<td colspan="6" class="tabTitle tbBtm">收藏时间:<?php echo MyDate('m-d H:i', $fields['addtime']); ?></td>
</tr>
{/dede:datalist}
</tbody>
<tfoot>
<tr>
<td colspan="6"><div class="pageList"> {dede:pagelist listsize=5 /}</div></td>
</tr>
</tfoot>
</table>
</div>
<!--主操作区域 -->
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>