| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!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/all.css">
- <script>window['current'] = '信息分类';</script>
- </head>
- <body class="{$mymps_global[cfg_tpl_dir]}">
- <div class="wrapper">
- {template header_search}
- <div class="class_index">
- {php $i = 1;}
- {loop $cat_list $mymps}
- {if $i%4 == 1 }
- <ul>
- {/if}
- <li><a href="{$mayimobile[mobiledomain]}{$mymps[uri_m]}" class="classname">
- <div class="icon"><img src="{$mymps_global[SiteUrl]}{$mymps[icon]}"></div>
- {$mymps[catname]}</a></li>
- {if $i%4 == 0}
- </ul>
- {/if}
- {php $i++;}
- {/loop}
- </div>
- <div class="clear"></div>
- {template footer}
- </body>
- </html>
|