| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!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=utf-8" />
- <link rel="alternate" href="{$mayimobile[mobileuri]}" media="handheld" type="application/vnd.wap.xhtml+xml">
- <meta http-equiv="mobile-agent" content="format=html5; url={$mayimobile[mobileuri]}">
- <meta http-equiv="mobile-agent" content="format=wml; url={$mayimobile[mobileuri]}">
- <meta http-equiv="mobile-agent" content="format=xhtml; url={$mayimobile[mobileuri]}">
- <title>商品展示-{$store[tname]}-{$mymps_global[SiteName]}</title>
- <meta http-equiv="keywords" content="{$store[tname]}商品展示">
- <meta http-equiv="description" content="{$store[tname]}商品展示">
- <link href="{$mymps_global[SiteUrl]}/template/spaces/store/css/{$store[template]}.css" type="text/css" rel="stylesheet" />
- </head>
- <body>
- {template header}
- <div class="content">
- {template sider}
- <div class="cright">
- <div class="box shop_infomain">
- <div class="tit"><span>商品展示</span></div>
- <div class="bd">
- {loop $goods $mymps}
- <li><a href="{$mymps[uri]}" title="{$mymps[goodsname]}" target="_blank"><img src="{$mymps_global[SiteUrl]}{$mymps[picture]}" width="120" height="93" /></a><span><a href="{$mymps[uri]}" title="{$mymps[goodsname]}" target="_blank">{$mymps[goodsname]}</a></span><em>¥{$mymps[nowprice]}</em></li>
- {loopelse}
- <li>暂无商品!</li>
- {/loop}
- </div>
- <div class="clear"></div>
- <div class="pagination" style="margin-left:15px!important;">{$pageview}</div>
- </div>
- </div>
- </div>
- <div class="clear15"></div>
- {template footer}
- </body>
- </html>
|