| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="zh-CN" class="index_page">
- <head>
- {template header}
- <title>我的文章 - {$mymps_global[SiteName]}</title>
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/global.css">
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/style.css">
- <link type="text/css" rel="stylesheet" href="{$mayimobile[mobiledomain]}/template/css/member.css">
- <script>window['current'] = '我的文章';</script>
-
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]}">
- <div class="wrapper">
- {template header_search}
-
- <div class="dl_nav">
- <span>
- <a href="index.php">首页</a>><a href="index.php?mod=member">会员中心</a>><a href="index.php?mod=member&action=docu">我的文章</a>
- </span>
- </div>
- <div class="my_docu">
- <ul>
- {loop $list $mymps}
- <li id="info{$mymps[id]}">
- <h3><a href="index.php?mod=store&id={$row[id]}&action=document&docuid={$mymps[id]}">{$mymps[title]}</a></h3>
- <dl class="cfix">
- <dt>浏览人次:{$mymps[hit]}次</dt>
- <dd>发布时间:{echo GetTime($mymps[pubtime])}</dd>
- </dl>
- </li>
- {/loop}
- </ul>
- </div>
-
- <div class="pager" style="border-top:none; border-bottom:1px #ddd solid;">
- {$pageview}
- </div>
- </div>
- {template footer}
- </body>
- </html>
|